25 lines
543 B
Terraform
25 lines
543 B
Terraform
|
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"
|
||
|
}
|
||
|
}
|