init
This commit is contained in:
commit
97f9a95415
21 changed files with 2963 additions and 0 deletions
24
infra/variables.tf
Normal file
24
infra/variables.tf
Normal 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"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue