Skip to content

Instantly share code, notes, and snippets.

@seventhskye
Created September 9, 2015 00:24
Show Gist options
  • Save seventhskye/52481aa23a2ad0e5669f to your computer and use it in GitHub Desktop.
Save seventhskye/52481aa23a2ad0e5669f to your computer and use it in GitHub Desktop.
A 7am Monday to 7pm Friday development environment-esk scheduled action, to use for an AutoScaling group in a CloudFormation template.
"ScheduledActionUp": {
"Type": "AWS::AutoScaling::ScheduledAction",
"Properties": {
"AutoScalingGroupName": {
"Ref": "AutoScalingGroup"
},
"MaxSize": "1",
"MinSize": "1",
"Recurrence": "0 7 * * 1"
}
},
"ScheduledActionDown": {
"Type": "AWS::AutoScaling::ScheduledAction",
"Properties": {
"AutoScalingGroupName": {
"Ref": "AutoScalingGroup"
},
"MaxSize": "0",
"MinSize": "0",
"Recurrence": "0 19 * * 5"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment