mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-27 16:37:42 +00:00
33 lines
562 B
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"
|
|
}
|