mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
28 lines
409 B
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"
|
|
}
|