-
-
Save manuelcoppotelli/178f04021205bd9b14e90d8c805af2bb to your computer and use it in GitHub Desktop.
Empty CloudFormation Template
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