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

28 lines
409 B
HCL

variable "ami_name" {
type = string
}
variable "instance_type" {
type = string
default = "t2.xlarge"
}
variable "ami_region" {
type = string
default = "us-west-1"
}
variable "ami_groups" {
type = list(string)
default = ["all"]
}
variable "PACKER_BUILDER_TYPE" {
type = string
default = "amazon-ebs"
}
variable "PACKER_BUILD_NAME" {
type = string
default = "ubuntu"
}