Skip to content

Instantly share code, notes, and snippets.

@succi0303
Created March 25, 2020 08:42
Show Gist options
  • Save succi0303/df835deda9dbc31e605c0514f24b44a9 to your computer and use it in GitHub Desktop.
Save succi0303/df835deda9dbc31e605c0514f24b44a9 to your computer and use it in GitHub Desktop.
{
"Parameters": {
"KeyName": {
"Description": "Name for existing EC2 KeyPair",
"Type": "String"
}
},
"Mappings": {
"RegionMap": {
"us-east-1": {
"AMI": "ami-76f0061f"
},
"us-west-1": {
"AMI": "ami-655a0a20"
}
}
},
"Resources": {
"Ec2Instance": {
"Type": "AWS::EC2::Instance",
"Properties": {
"KeyName": {
"Ref": "KeyName"
},
"ImageId": {
"Fn::FindInMap": [
"RegionMap",
{
"Ref": "AWS::Region"
},
"AMI"
]
},
"UserData": {
"Fn::Base64": "80"
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment