From 35014a15ca174a9828e85c3d31f7ceceb6897710 Mon Sep 17 00:00:00 2001 From: Brian Lechthaler Date: Sat, 21 Aug 2021 14:14:09 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=84=20=F0=9F=87=AF=F0=9F=87=B5=20Updat?= =?UTF-8?q?e=20AMIs=20&=20add=20region=20ap-northeast-3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit updates all AMIs to debian-10-arm64-20210721-710, and add the AWS region 🇯🇵 ap-northeast-3 (Osaka, Japan) to the list. --- cloud/terraform/aws/variables.tf | 41 ++++++++++++++++---------------- 1 file changed, 21 insertions(+), 20 deletions(-) diff --git a/cloud/terraform/aws/variables.tf b/cloud/terraform/aws/variables.tf index a59ed0eb..7e6aed67 100644 --- a/cloud/terraform/aws/variables.tf +++ b/cloud/terraform/aws/variables.tf @@ -32,26 +32,27 @@ variable "ec2_instance_type" { variable "ec2_ami" { type = map(string) default = { - "af-south-1" = "ami-04090a79eb0bcb6c1" - "ap-east-1" = "ami-0327f60df432e2479" - "ap-northeast-1" = "ami-06bc324209030cbc8" - "ap-northeast-2" = "ami-02ee842962ae7df95" - "ap-south-1" = "ami-0d548fffbb2d54e42" - "ap-southeast-1" = "ami-0dcf891cda6248f00" - "ap-southeast-2" = "ami-022578f782d4e5d30" - "ca-central-1" = "ami-01444dd84a75e9a82" - "eu-central-1" = "ami-097411fa8fbfdffda" - "eu-north-1" = "ami-026984326b6456f6a" - "eu-south-1" = "ami-07ad114e5df69197e" - "eu-west-1" = "ami-0101794b418f8b2a6" - "eu-west-2" = "ami-00eac9341e72e638a" - "eu-west-3" = "ami-01469c569416f3bd3" - "me-south-1" = "ami-0821f357b877b076d" - "sa-east-1" = "ami-0c87b2c6219e3d5fd" - "us-east-1" = "ami-047f0b13f023f6553" - "us-east-2" = "ami-0988470f4e830799f" - "us-west-1" = "ami-0be6bacfeb2913ac2" - "us-west-2" = "ami-0112d55fbe29acc68" + "af-south-1" = "ami-0272d4f5fb1b98a0d" + "ap-east-1" = "ami-00d242e2f23abf6d2" + "ap-northeast-1" = "ami-001c6b4d627e8be53" + "ap-northeast-2" = "ami-0d841ed4bf80e764c" + "ap-northeast-3" = "ami-01b0a01d770321320" + "ap-south-1" = "ami-04ba7e5bd7c6f6929" + "ap-southeast-1" = "ami-0dca3eabb09c32ae2" + "ap-southeast-2" = "ami-03ff8684dc585ddae" + "ca-central-1" = "ami-08af22d7c0382fd83" + "eu-central-1" = "ami-0f41e297b3c53fab8" + "eu-north-1" = "ami-0bbc6a00971c77d6d" + "eu-south-1" = "ami-03ff8684dc585ddae" + "eu-west-1" = "ami-080684ad73d431a05" + "eu-west-2" = "ami-04b259723891dfc53" + "eu-west-3" = "ami-00662eead74f66895" + "me-south-1" = "ami-021a6c6047091ab5b" + "sa-east-1" = "ami-0aac091cce68a049c" + "us-east-1" = "ami-05ad4ed7f9c48178b" + "us-east-2" = "ami-07640f3f27c0ad3d3" + "us-west-1" = "ami-0c053f1d5f22eb09f" + "us-west-2" = "ami-090cd3aed687b1ee1" } }