🔄 🇯🇵 Update AMIs & add region ap-northeast-3

This commit updates all AMIs to debian-10-arm64-20210721-710, and add the AWS region 🇯🇵 ap-northeast-3 (Osaka, Japan) to the list.
This commit is contained in:
Brian Lechthaler 2021-08-21 14:14:09 -07:00 committed by GitHub
parent 2aa4c3c2c6
commit 35014a15ca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,26 +32,27 @@ variable "ec2_instance_type" {
variable "ec2_ami" { variable "ec2_ami" {
type = map(string) type = map(string)
default = { default = {
"af-south-1" = "ami-04090a79eb0bcb6c1" "af-south-1" = "ami-0272d4f5fb1b98a0d"
"ap-east-1" = "ami-0327f60df432e2479" "ap-east-1" = "ami-00d242e2f23abf6d2"
"ap-northeast-1" = "ami-06bc324209030cbc8" "ap-northeast-1" = "ami-001c6b4d627e8be53"
"ap-northeast-2" = "ami-02ee842962ae7df95" "ap-northeast-2" = "ami-0d841ed4bf80e764c"
"ap-south-1" = "ami-0d548fffbb2d54e42" "ap-northeast-3" = "ami-01b0a01d770321320"
"ap-southeast-1" = "ami-0dcf891cda6248f00" "ap-south-1" = "ami-04ba7e5bd7c6f6929"
"ap-southeast-2" = "ami-022578f782d4e5d30" "ap-southeast-1" = "ami-0dca3eabb09c32ae2"
"ca-central-1" = "ami-01444dd84a75e9a82" "ap-southeast-2" = "ami-03ff8684dc585ddae"
"eu-central-1" = "ami-097411fa8fbfdffda" "ca-central-1" = "ami-08af22d7c0382fd83"
"eu-north-1" = "ami-026984326b6456f6a" "eu-central-1" = "ami-0f41e297b3c53fab8"
"eu-south-1" = "ami-07ad114e5df69197e" "eu-north-1" = "ami-0bbc6a00971c77d6d"
"eu-west-1" = "ami-0101794b418f8b2a6" "eu-south-1" = "ami-03ff8684dc585ddae"
"eu-west-2" = "ami-00eac9341e72e638a" "eu-west-1" = "ami-080684ad73d431a05"
"eu-west-3" = "ami-01469c569416f3bd3" "eu-west-2" = "ami-04b259723891dfc53"
"me-south-1" = "ami-0821f357b877b076d" "eu-west-3" = "ami-00662eead74f66895"
"sa-east-1" = "ami-0c87b2c6219e3d5fd" "me-south-1" = "ami-021a6c6047091ab5b"
"us-east-1" = "ami-047f0b13f023f6553" "sa-east-1" = "ami-0aac091cce68a049c"
"us-east-2" = "ami-0988470f4e830799f" "us-east-1" = "ami-05ad4ed7f9c48178b"
"us-west-1" = "ami-0be6bacfeb2913ac2" "us-east-2" = "ami-07640f3f27c0ad3d3"
"us-west-2" = "ami-0112d55fbe29acc68" "us-west-1" = "ami-0c053f1d5f22eb09f"
"us-west-2" = "ami-090cd3aed687b1ee1"
} }
} }