Merge pull request #706 from brianlechthaler/patch-2

Debian 10.6 AMI + Add AWS Regions
This commit is contained in:
Marco Ochse 2020-10-07 14:28:19 +02:00 committed by GitHub
commit 6b37578d8d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,24 +32,26 @@ variable "ec2_instance_type" {
variable "ec2_ami" { variable "ec2_ami" {
type = map(string) type = map(string)
default = { default = {
"ap-east-1" = "ami-f9c58188" "af-south-1" = "ami-0cd567568c63c1c50"
"ap-northeast-1" = "ami-0fae5501ae428f9d7" "ap-east-1" = "ami-da6c2eab"
"ap-northeast-2" = "ami-0522874b039290246" "ap-northeast-1" = "ami-0143c7691e0f7cd73"
"ap-south-1" = "ami-03b4e18f70aca8973" "ap-northeast-2" = "ami-08e248bc8d4c0c2c7"
"ap-southeast-1" = "ami-0852293c17f5240b3" "ap-south-1" = "ami-00c3a0e8f345e299e"
"ap-southeast-2" = "ami-03ea2db714f1f6acf" "ap-southeast-1" = "ami-0782777da8d7d10c4"
"ca-central-1" = "ami-094511e5020cdea18" "ap-southeast-2" = "ami-01b0588564524ce82"
"eu-central-1" = "ami-0394acab8c5063f6f" "ca-central-1" = "ami-0de46d86862b936a0"
"eu-north-1" = "ami-0c82d9a7f5674320a" "eu-central-1" = "ami-01580e1a2caffeb61"
"eu-west-1" = "ami-006d280940ad4a96c" "eu-north-1" = "ami-00466bdeb1cc0a297"
"eu-west-2" = "ami-08fe9ea08db6f1258" "eu-south-1" = "ami-0e5461d66f95255c9"
"eu-west-3" = "ami-04563f5eab11f2b87" "eu-west-1" = "ami-0ec224441e69e034e"
"me-south-1" = "ami-0492a01b319d1f052" "eu-west-2" = "ami-0e02b7cae376541f2"
"sa-east-1" = "ami-05e16feea94258a69" "eu-west-3" = "ami-09de525c1f6538ef8"
"us-east-1" = "ami-04d70e069399af2e9" "me-south-1" = "ami-02465bc955e5fa1d1"
"us-east-2" = "ami-04100f1cdba76b497" "sa-east-1" = "ami-08605b43346ed52e8"
"us-west-1" = "ami-014c78f266c5b7163" "us-east-1" = "ami-0fda9f4b1eaa92881"
"us-west-2" = "ami-023b7a69b9328e1f9" "us-east-2" = "ami-08f6e7446faea65e0"
"us-west-1" = "ami-091f15e9ff781f127"
"us-west-2" = "ami-06d8a32aedc6986f5"
} }
} }