24 lines
543 B
HCL
24 lines
543 B
HCL
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"
|
|
}
|
|
}
|