Skip to content

Instantly share code, notes, and snippets.

@mcasperson
Created April 9, 2020 00:27
Show Gist options
  • Save mcasperson/2dba49f6ae48973af5fdfbf385816787 to your computer and use it in GitHub Desktop.
Save mcasperson/2dba49f6ae48973af5fdfbf385816787 to your computer and use it in GitHub Desktop.
Empty CloudFormation Template
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