Skip to content

Instantly share code, notes, and snippets.

@stellimatt
Created September 1, 2016 00:26
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 stellimatt/b4b652c223d31036423b62cf31888ead to your computer and use it in GitHub Desktop.
Save stellimatt/b4b652c223d31036423b62cf31888ead to your computer and use it in GitHub Desktop.
Sample CFN parameters
"DbPassword": {
"Type": "String",
"Description": "Password for the database",
"NoEcho": true
},
"DbUsername": {
"Type": "String",
"Description": "Username for the database"
},
"DbUrl": {
"Type": "String",
"Description": "URL to reach the database"
},
"DbName": {
"Type": "String",
"Description": "Database name the application should use"
},
"DocRoot": {
"Type": "String",
"Description": "Path used for the root of the web application"
},
"ServerName": {
"Type": "String",
"Description": "application server name used in apache config",
"Default": "localhost"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment