2021-06-25 16:13:38 +00:00
|
|
|
variable "ami_name" {
|
2021-08-06 14:07:45 +00:00
|
|
|
type = string
|
2021-06-25 16:13:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variable "instance_type" {
|
2021-08-06 14:07:45 +00:00
|
|
|
type = string
|
2021-06-25 16:13:38 +00:00
|
|
|
default = "t2.medium"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variable "ami_region" {
|
2021-08-06 14:07:45 +00:00
|
|
|
type = string
|
2023-06-26 09:06:43 +00:00
|
|
|
default = "us-west-1"
|
2021-06-25 16:13:38 +00:00
|
|
|
}
|
2021-08-12 04:59:57 +00:00
|
|
|
|
2021-11-15 02:48:38 +00:00
|
|
|
variable "ami_groups" {
|
|
|
|
|
type = list(string)
|
|
|
|
|
default = ["all"]
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-12 04:59:57 +00:00
|
|
|
variable "ami_regions" {
|
|
|
|
|
type = list(string)
|
2023-09-27 05:40:52 +00:00
|
|
|
default = ["us-west-1", "us-east-1", "us-east-2", "eu-west-2", "eu-central-1", "ap-northeast-1", "ap-southeast-1","ap-northeast-3", "ap-south-1", "ap-northeast-2", "ap-southeast-2", "ca-central-1", "eu-west-1", "eu-north-1", "sa-east-1", "ap-east-1"]
|
2021-08-12 04:59:57 +00:00
|
|
|
}
|