This commit is contained in:
whilb 2025-08-16 17:54:12 -07:00
commit 97f9a95415
21 changed files with 2963 additions and 0 deletions

24
infra/variables.tf Normal file
View file

@ -0,0 +1,24 @@
variable "primary_domain" {
type = string
description = "Primary domain name (e.g., calculator.127local.net)"
}
variable "secondary_domain" {
type = string
description = "Secondary domain name (e.g., calc.127local.net)"
}
variable "hosted_zone" {
type = string
description = "Hosted zone name (e.g., 127local.net)"
}
variable "aws_region" {
type = string
default = "us-west-2"
}
variable "tags" {
type = map(string)
default = {
Application = "calculator.127local"
Project = "calc-127local-net"
}
}