Created
September 9, 2015 00:24
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"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