Created
February 12, 2020 12:17
-
-
Save breenie/36013de3b342417e3514f78ca61e4748 to your computer and use it in GitHub Desktop.
Empty AWS Cloudformation stack
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
--- | |
AWSTemplateFormatVersion: '2010-09-09' | |
Description: 'CloudFormation exports' | |
Conditions: | |
HasNot: !Equals [ 'true', 'false' ] | |
# dummy (null) resource, never created | |
Resources: | |
NullResource: | |
Type: 'Custom::NullResource' | |
Condition: HasNot | |
Outputs: | |
ExportsStackName: | |
Value: !Ref 'AWS::StackName' | |
Export: | |
Name: !Sub 'ExportsStackName-${AWS::StackName}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Stolen directly from https://forums.aws.amazon.com/thread.jspa?threadID=240305