Skip to content

Instantly share code, notes, and snippets.

@pmarques
Created September 6, 2019 09:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pmarques/62f40ac1f61e43f958fbb1f304d76d5a to your computer and use it in GitHub Desktop.
Save pmarques/62f40ac1f61e43f958fbb1f304d76d5a to your computer and use it in GitHub Desktop.
Cloudformation template with a simple resource for testing
AWSTemplateFormatVersion: 2010-09-09
Parameters:
ResourceName:
Type: String
MinLength: 1
Resources:
DummyResource:
Type: AWS::CloudWatch::Dashboard
Properties:
DashboardBody: ‘{“widgets”:[]}’
DashboardName: !Ref ResourceName
Outputs:
ResourceName:
Value: !Ref DummyResource
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment