Advertisement
Guest User

Untitled

a guest
Sep 17th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. AWSTemplateFormatVersion: 2010-09-09
  2.  
  3. Parameters:
  4. ResourceName:
  5. Type: String
  6. MinLength: 1
  7.  
  8. Resources:
  9. DummyResource:
  10. Type: AWS::CloudWatch::Dashboard
  11. Properties:
  12. DashboardBody: ‘{“widgets”:[]}’
  13. DashboardName: !Ref ResourceName
  14.  
  15. Outputs:
  16. ResourceName:
  17. Value: !Ref DummyResource
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement