Created
November 2, 2016 02:12
-
-
Save bo67192/b6273550d85bc0091b7c9c6437f7d21f to your computer and use it in GitHub Desktop.
Cloudformation Template Parameter Snippet
This file contains 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": { | |
"EnvironmentParameter": { | |
"Type": "String", | |
"Default": "Prod", | |
"AllowedValues": [ | |
"Test", | |
"Prod" | |
], | |
"Description": "Enter the environment you are deploying your stack into" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment