mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-22 08:28:35 +00:00
* change location rule in nginx conf; enable std out logging * use packer variables to set ami name, instance type and ami region
14 lines
179 B
HCL
14 lines
179 B
HCL
|
|
variable "ami_name" {
|
|
type = string
|
|
}
|
|
|
|
variable "instance_type" {
|
|
type = string
|
|
default = "t2.medium"
|
|
}
|
|
|
|
variable "ami_region" {
|
|
type = string
|
|
default = "us-west-2"
|
|
}
|