Skip to content

Instantly share code, notes, and snippets.

@joninsky
Last active August 25, 2019 22:59
Show Gist options
  • Select an option

  • Save joninsky/11465c31a8c1e81ca4c21b7d6f1e754b to your computer and use it in GitHub Desktop.

Select an option

Save joninsky/11465c31a8c1e81ca4c21b7d6f1e754b to your computer and use it in GitHub Desktop.
ENV parameter declaration in Cloudformation
Parameters:
ENV:
Description: 'The environment that this stack represents'
Type: String
Default: 'DEV'
ConstraintDescription: "Must be either 'DEV', 'STAG', or 'PROD'"
AllowedValues:
- 'DEV'
- 'STAG'
- 'PROD'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment