forked from awslabs/goformation
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(tests): Added a test for JSON resource tags (awslabs#248)
see issue awslabs#223
- Loading branch information
1 parent
aafcbdd
commit 387676f
Showing
2 changed files
with
59 additions
and
0 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"AWSTemplateFormatVersion": "2010-09-09", | ||
"Description": "Valid CloudFormation template", | ||
"Resources": { | ||
"EcsClusterDefaultAutoScalingGroupASGC1A785DB": { | ||
"Type": "AWS::AutoScaling::AutoScalingGroup", | ||
"Properties": { | ||
"MaxSize": "1", | ||
"MinSize": "1", | ||
"DesiredCapacity": "1", | ||
"LaunchConfigurationName": { | ||
"Ref": "EcsClusterDefaultAutoScalingGroupLaunchConfigB7E376C1" | ||
}, | ||
"Tags": [ | ||
{ | ||
"Key": "Name", | ||
"PropagateAtLaunch": true, | ||
"Value": "aws-ecs-integ-ecs/EcsCluster/DefaultAutoScalingGroup" | ||
} | ||
], | ||
"VPCZoneIdentifier": [ | ||
{ | ||
"Ref": "VpcPrivateSubnet1Subnet536B997A" | ||
}, | ||
{ | ||
"Ref": "VpcPrivateSubnet2Subnet3788AAA1" | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |