ToolJet/terraform/AMI_EC2/variables.tf

30 lines
623 B
Terraform
Raw Normal View History

2025-09-18 19:42:30 +00:00
# Variables
variable "region" {
description = "AWS region"
type = string
default = "us-west-2"
}
variable "availability_zone" {
description = "Availability zone for the subnet and instance"
type = string
default = "us-west-2a"
}
variable "instance_type" {
description = "EC2 instance type"
type = string
default = "t3.medium" # Recommended for ToolJet
}
variable "tooljet_ami_id" {
description = "ToolJet AMI ID - contact ToolJet team for the specific AMI ID in your region"
type = string
}
variable "ingress_ports" {
default = [22, 80, 443, 3000]
}