Fix indentation and types cf template parameters

Use AWS specific types for key pair name and vpc parts
This commit is contained in:
Anton Ilin 2015-02-08 23:13:13 +02:00
parent 8a7a127352
commit 2d01f1f02e

View File

@ -62,26 +62,26 @@
}, },
"KeyPair": { "KeyPair": {
"Description": "The name of an EC2 Key Pair to allow SSH access to the instance.", "Description": "The name of an EC2 Key Pair to allow SSH access to the instance.",
"Type": "String" "Type": "AWS::EC2::KeyPair::KeyName"
}, },
"VpcId": { "VpcId": {
"Description": "The ID of the VPC to launch into.", "Description": "The ID of the VPC to launch into.",
"Type": "String", "Type": "AWS::EC2::VPC::Id",
"Default": "" "Default": ""
}, },
"SubnetId": { "SubnetId": {
"Description": "The ID of the VPC to launch into (that must be within the supplied VPC)", "Description": "The ID of the subnet to launch into (that must be within the supplied VPC)",
"Type": "String", "Type": "AWS::EC2::Subnet::Id",
"Default": "" "Default": ""
}, },
"SubnetAZ": { "SubnetAZ": {
"Description": "The availability zone of the subnet supplied (for example eu-west-1a)", "Description": "The availability zone of the subnet supplied (for example eu-west-1a)",
"Type": "String", "Type": "String",
"Default": "" "Default": ""
} }
}, },
"Conditions": { "Conditions": {
"UseEC2Classic": {"Fn::Equals": [{"Ref": "VpcId"}, ""]} "UseEC2Classic": {"Fn::Equals": [{"Ref": "VpcId"}, ""]}
}, },
"Resources": { "Resources": {
"KubernetesSecurityGroup": { "KubernetesSecurityGroup": {