Created
April 24, 2021 00:03
-
-
Save mbarneyjr/78c060804c727ca0009e646987e547a8 to your computer and use it in GitHub Desktop.
A template that could manage no resources (assuming `CreateBucket` is set to something other than `'yes'`)
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
AWSTemplateFormatVersion: '2010-09-09' | |
Parameters: | |
CreateBucket: | |
Type: String | |
Conditions: | |
ShouldCreateBucket: !Equals [ !Ref CreateBucket, 'yes' ] | |
Resources: | |
Bucket: | |
Condition: ShouldCreateBucket | |
Type: AWS::S3::Bucket |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment