Skip to content

Commit

Permalink
Add missing file.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikewrighton committed Sep 9, 2024
1 parent ae3b9b1 commit cab8300
Showing 1 changed file with 46 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"Parameters": {
"Param": {
"Type": "CommaDelimitedList",
"Default": "key,value"
}
},
"Conditions": {
"ShouldIncludeTag": {
"Fn::Equals": [2, 2]
}
},
"Resources": {
"Bucket": {
"Type": "AWS::S3::Bucket",
"Properties": {
"BucketName": "cdk-integ-cfn-include-bucket2",
"Tags": [
{
"Key": "Key1",
"Value": "Value1"
},
{
"Fn::If": [
"NonExistentCondition",
{
"Key": {
"Fn::Select": [
0,
{
"Ref": "Param"
}
]
},
"Value": "TagValue"
},
{
"Ref": "AWS::NoValue"
}
]
}
]
}
}
}
}

0 comments on commit cab8300

Please sign in to comment.