Merge pull request #595 from shaderecker/aws-ami

Update AWS AMIs
This commit is contained in:
Marco Ochse 2020-03-25 14:19:26 +01:00 committed by GitHub
commit 2acd5da25b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,23 +32,23 @@ variable "ec2_instance_type" {
variable "ec2_ami" { variable "ec2_ami" {
type = map(string) type = map(string)
default = { default = {
"ap-east-1" = "ami-b7d0abc6" "ap-east-1" = "ami-f9c58188"
"ap-northeast-1" = "ami-01f4f0c9374675b99" "ap-northeast-1" = "ami-0fae5501ae428f9d7"
"ap-northeast-2" = "ami-0855cb0c55370c38c" "ap-northeast-2" = "ami-0522874b039290246"
"ap-south-1" = "ami-00d7d1cbdcb087cf3" "ap-south-1" = "ami-03b4e18f70aca8973"
"ap-southeast-1" = "ami-03779b1b2fbb3a9d4" "ap-southeast-1" = "ami-0852293c17f5240b3"
"ap-southeast-2" = "ami-0ce3a7c68c6b1678d" "ap-southeast-2" = "ami-03ea2db714f1f6acf"
"ca-central-1" = "ami-037099906a22f210f" "ca-central-1" = "ami-094511e5020cdea18"
"eu-central-1" = "ami-0845c3902a6f2af32" "eu-central-1" = "ami-0394acab8c5063f6f"
"eu-north-1" = "ami-e634bf98" "eu-north-1" = "ami-0c82d9a7f5674320a"
"eu-west-1" = "ami-06a53bf81914447b5" "eu-west-1" = "ami-006d280940ad4a96c"
"eu-west-2" = "ami-053d9f0770cd2e34c" "eu-west-2" = "ami-08fe9ea08db6f1258"
"eu-west-3" = "ami-060bf1f444f742af9" "eu-west-3" = "ami-04563f5eab11f2b87"
"me-south-1" = "ami-04a9a536105c72d30" "me-south-1" = "ami-0492a01b319d1f052"
"sa-east-1" = "ami-0a5fd18ed0b9c7f35" "sa-east-1" = "ami-05e16feea94258a69"
"us-east-1" = "ami-01db78123b2b99496" "us-east-1" = "ami-04d70e069399af2e9"
"us-east-2" = "ami-010ffea14ff17ebf5" "us-east-2" = "ami-04100f1cdba76b497"
"us-west-1" = "ami-0ed1af421f2a3cf40" "us-west-1" = "ami-014c78f266c5b7163"
"us-west-2" = "ami-030a304a76b181155" "us-west-2" = "ami-023b7a69b9328e1f9"
} }
} }