Created
March 5, 2020 11:38
-
-
Save AndrewBestbier/a23d7cd13f44061116cc355fff3c67fa to your computer and use it in GitHub Desktop.
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
AutoScalingGroup: | |
Type: AWS::AutoScaling::AutoScalingGroup | |
Properties: | |
LaunchConfigurationName: !Ref AppLaunchConfig | |
# AvailabilityZones: | |
# - !Select [0, !GetAZs ] | |
# - !Select [1, !GetAZs ] | |
VPCZoneIdentifier: # (1) | |
- !Ref PublicSubnetA | |
- !Ref PublicSubnetB | |
DesiredCapacity: 3 | |
MinSize: 3 | |
MaxSize: 3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment