ToolJet/deploy/ec2/ee/variables.pkr.hcl

33 lines
562 B
HCL

variable "ami_name" {
type = string
}
variable "instance_type" {
type = string
default = "t2.large"
}
variable "ami_region" {
type = string
default = "us-west-2"
}
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-central-1", "ap-northeast-1", "ca-central-1"]
}
variable "PACKER_BUILDER_TYPE" {
type = string
default = "amazon-ebs"
}
variable "PACKER_BUILD_NAME" {
type = string
default = "ubuntu"
}