# License Type: GNU GENERAL PUBLIC LICENSE, Version 3
#
#as-alarm-apply start
#confirms that executables required for succesful script execution are available
prerequisitecheck()
{
for prerequisite in basename cut grep as-describe-auto-scaling-groups mon-put-metric-alarm
do
#use of "hash" chosen as it is a shell builtin and will add programs to hash table, possibly speeding execution. Use of type also considered - open to suggestions.
hash$prerequisite&> /dev/null
if[[$?==1]]#has exits with exit status of 70, executable was not found
thenecho"In order to use `basename $0` the executable \"$prerequisite\" must be installed." 1>&2;exit70
fi
done
}
#calls prerequisitecheck function to ensure that all executables required for script execution are available
prerequisitecheck
#sets defaults of as-apply-alarms
region="us-east-1"
#handles options processing
whilegetopts :g:r:t:p:e:a opt
do
case$opt in
g)asgname="$OPTARG";;
r)region="$OPTARG";;
t)topicname="$OPTARG";;
e)evaluationperiod="$OPTARG";;
p)previewmode="$OPTARG";;
a)allasg="true";;
*)echo"Error with Options Input. Cause of failure is most likely that an unsupported parameter was passed or a parameter was passed without a corresponding option." 1>&2;exit 64;;
esac
done
#sets previewmode - will echo commands rather than performing work
case$previewmode in
true|True)previewmode="echo";echo"Preview Mode is set to \"True.\"";;
""|false|False)previewmode="";;
*)echo"You specified \"$previewmode\" for Preview Mode. If specifying a Preview Mode you must specificy either \"true\" or \"false.\"" 1>&2;exit 64;;
esac
# evaluationperiod validator - must be a number between 1 and 99
case$evaluationperiod in
"")evaluationperiod=1;;
[1-99]);;
*)echo"You specified \"$evaluationperiod\" for your evaluation period. If specifying an evaluation period you must specify a period between 1 and 99." 1>&2;exit 64;;
*)echo"The \"$region\" region does not exist. You must specify a valid region (example: -r us-east-1 or -r us-west-2)." 1>&2;exit 64;;
esac
# single asg validator - runs if applying to only one asg
if[[$allasg !="true"]]
then
if[[$asgname==""]]
thenecho"You did not specify an Auto Scaling Group. You must select an Auto Scaling Group to apply alarms to (example: as-apply-alarms.sh -g <autoscalinggroupname>) or you must select all Auto Scaling Groups (example: as-apply-alarms.sh -a)." 1>&2;exit64
thenecho"Auto Scaling Group $asgname has been found."
elseecho"The Auto Scaling Group \"$asgname\" does not exist. You must specify a valid Auto Scaling Group." 1>&2;exit64
fi
fi
# multiple asg validator - runs if applying to all asgs
if[[$allasg=="true"]]
then
if[[$asgname !=""]]
then
echo"You specified both \"All\" Auto Scaling Groups and the Auto Scaling Group \"$asgname\" to apply alarms to. You must specify either one particular Auto Scaling Group (-g <autoscalinggroup>) or all Auto Scaling Groups (-a) but not both." 1>&2;exit64
else
echo"Alarms will be applied to all Auto Scaling Groups."