Guest User

Untitled

a guest
Dec 12th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. "DevTestClusterInstanceASG" : {
  2. "Type" : "AWS::AutoScaling::AutoScalingGroup",
  3. "Properties" : {
  4. "LaunchConfigurationName": {"Ref" : "DevTestClusterInstanceLaunchConfig"},
  5. "LoadBalancerNames": [{ "Ref": "WebElasticLoadBalancer" }],
  6. "MinSize": { "Ref" : "MinSize"},
  7. "MaxSize": { "Ref" : "MaxSize"},
  8. "DesiredCapacity": { "Ref" : "DesiredCapacity"},
  9. "VPCZoneIdentifier": [
  10. { "Fn::FindInMap" : [ "EnvMap", { "Ref" : "Environment" }, "SubnetId" ] }
  11. ],
  12. "TerminationPolicies" : ["OldestInstance"],
  13. "Tags" : [
  14. { "Key": "Name", "Value": {"Fn::FindInMap" : [ "EnvMap", { "Ref" : "Environment" }, "Name" ] }, "PropagateAtLaunch": "true" },
  15. { "Key": "OwnerContact", "Value": {"Fn::FindInMap" : [ "EnvMap", { "Ref" : "Environment" }, "OwnerContact" ] }, "PropagateAtLaunch": "true" }
  16. ]
  17. }
  18. }
Add Comment
Please, Sign In to add comment