ToolJet/deploy/ec2/variables.pkr.hcl

24 lines
561 B
HCL
Raw Normal View History

variable "ami_name" {
2021-08-06 14:07:45 +00:00
type = string
}
variable "instance_type" {
2021-08-06 14:07:45 +00:00
type = string
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-11-15 02:48:38 +00:00
variable "ami_groups" {
type = list(string)
default = ["all"]
}
variable "ami_regions" {
type = list(string)
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"]
}