Last active
August 25, 2019 22:59
-
-
Save joninsky/11465c31a8c1e81ca4c21b7d6f1e754b to your computer and use it in GitHub Desktop.
ENV parameter declaration in Cloudformation
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
| 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