new glimpse approach

This commit is contained in:
2026-05-27 10:12:45 -07:00
parent 6e65df2591
commit 2b9648dd1a
9 changed files with 768 additions and 23 deletions

15
variables.tf Normal file
View File

@@ -0,0 +1,15 @@
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
}