Created
October 21, 2012 21:21
-
-
Save przygode/3928545 to your computer and use it in GitHub Desktop.
auto-scaling-parameters
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": { | |
"KeyName": { | |
"Type": "String", | |
"Description": "Name of an existing EC2 Key Pair to enable SSH access to the webserver", | |
"Default": "AWS_SSH_KEY" | |
}, | |
"InstanceType": { | |
"Description": "Application Server EC2 instance type", | |
"Type": "String", | |
"Default": "m1.small", | |
"AllowedValues": [ | |
"t1.micro", | |
"m1.small", | |
"m1.medium", | |
"m1.large", | |
"m1.xlarge", | |
"m2.xlarge", | |
"m2.2xlarge", | |
"m2.4xlarge", | |
"c1.medium", | |
"c1.xlarge", | |
"cc1.4xlarge", | |
"cc2.8xlarge", | |
"cg1.4xlarge" | |
], | |
"ConstraintDescription": "must be a valid EC2 instance type." | |
}, | |
"ChefOrganization": { | |
"Description": "The Organization name used in Hosted Chef.", | |
"Type": "String", | |
"Default": "Stratalux" | |
}, | |
"ChefEnvironment": { | |
"Description": "The Chef Environment.", | |
"Type": "String", | |
"Default": "Production" | |
}, | |
"ChefRunList": { | |
"Description": "The Chef run list.", | |
"Type": "String", | |
"Default": "role[app_server_prod]" | |
}, | |
"DomainName": { | |
"Description": "Server Domain Name.", | |
"Type": "String", | |
"Default": "stratalux.com" | |
}, | |
"StrataluxBucket": { | |
"Description": "S3 bucket containing validation private key for Chef Server", | |
"Type": "String", | |
"Default": "Stratalux_bucket" | |
}, | |
"SNSTopic": { | |
"Description": "Email address for notifications.", | |
"Type": "String", | |
"Default": "[email protected]" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment