Last active
June 6, 2019 19:39
-
-
Save lvthillo/b441a295b9e0338a7d009f0a6049b8f1 to your computer and use it in GitHub Desktop.
Auto Scaling Group
This file contains hidden or 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
| ASG: | |
| Type: AWS::AutoScaling::AutoScalingGroup | |
| Properties: | |
| AvailabilityZones: !GetAZs '' | |
| AutoScalingGroupName: auto-scaling-group | |
| LaunchConfigurationName: !Ref ASGLaunchConfiguration | |
| MaxSize: '5' | |
| MinSize: '1' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment