Files
glimpse2/variables.tf
2026-05-27 10:12:45 -07:00

16 lines
306 B
HCL

variable "environment" {
description = "Deployment environment name"
type = string
default = "prod"
}
variable "region" {
description = "AWS region"
type = string
default = "us-east-1"
}
locals {
env = terraform.workspace == "default" ? "prod" : terraform.workspace
}