Update variables.tf

- Latest Debian 10.7 AMIs (https://wiki.debian.org/Cloud/AmazonEC2Image/Buster?action=recall&rev=21)
- Add MEDICAL
This commit is contained in:
Sebastian Haderecker 2021-02-04 22:51:01 +01:00 committed by GitHub
parent 362dd75473
commit bde60734ea
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-04090a79eb0bcb6c1"
"ap-northeast-1" = "ami-0fae5501ae428f9d7" "ap-east-1" = "ami-0327f60df432e2479"
"ap-northeast-2" = "ami-0522874b039290246" "ap-northeast-1" = "ami-06bc324209030cbc8"
"ap-south-1" = "ami-03b4e18f70aca8973" "ap-northeast-2" = "ami-02ee842962ae7df95"
"ap-southeast-1" = "ami-0852293c17f5240b3" "ap-south-1" = "ami-0d548fffbb2d54e42"
"ap-southeast-2" = "ami-03ea2db714f1f6acf" "ap-southeast-1" = "ami-0dcf891cda6248f00"
"ca-central-1" = "ami-094511e5020cdea18" "ap-southeast-2" = "ami-022578f782d4e5d30"
"eu-central-1" = "ami-0394acab8c5063f6f" "ca-central-1" = "ami-01444dd84a75e9a82"
"eu-north-1" = "ami-0c82d9a7f5674320a" "eu-central-1" = "ami-097411fa8fbfdffda"
"eu-west-1" = "ami-006d280940ad4a96c" "eu-north-1" = "ami-026984326b6456f6a"
"eu-west-2" = "ami-08fe9ea08db6f1258" "eu-south-1" = "ami-07ad114e5df69197e"
"eu-west-3" = "ami-04563f5eab11f2b87" "eu-west-1" = "ami-0101794b418f8b2a6"
"me-south-1" = "ami-0492a01b319d1f052" "eu-west-2" = "ami-00eac9341e72e638a"
"sa-east-1" = "ami-05e16feea94258a69" "eu-west-3" = "ami-01469c569416f3bd3"
"us-east-1" = "ami-04d70e069399af2e9" "me-south-1" = "ami-0821f357b877b076d"
"us-east-2" = "ami-04100f1cdba76b497" "sa-east-1" = "ami-0c87b2c6219e3d5fd"
"us-west-1" = "ami-014c78f266c5b7163" "us-east-1" = "ami-047f0b13f023f6553"
"us-west-2" = "ami-023b7a69b9328e1f9" "us-east-2" = "ami-0988470f4e830799f"
"us-west-1" = "ami-0be6bacfeb2913ac2"
"us-west-2" = "ami-0112d55fbe29acc68"
} }
} }
@ -66,7 +68,7 @@ variable "linux_password" {
# These will go in the generated tpot.conf file # These will go in the generated tpot.conf file
variable "tpot_flavor" { variable "tpot_flavor" {
default = "STANDARD" default = "STANDARD"
description = "Specify your tpot flavor [STANDARD, SENSOR, INDUSTRIAL, COLLECTOR, NEXTGEN]" description = "Specify your tpot flavor [STANDARD, SENSOR, INDUSTRIAL, COLLECTOR, NEXTGEN, MEDICAL]"
} }
variable "web_user" { variable "web_user" {