This commit is contained in:
parent
f537273fd8
commit
19711f2153
10 changed files with 2602 additions and 2 deletions
20
infra/email/variables.tf
Normal file
20
infra/email/variables.tf
Normal file
|
@ -0,0 +1,20 @@
|
|||
variable "aws_region" {
|
||||
description = "AWS region for resources"
|
||||
type = string
|
||||
default = "us-west-2"
|
||||
}
|
||||
|
||||
variable "domain_name" {
|
||||
description = "Domain name for email forwarding"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "forward_email" {
|
||||
description = "Email address to forward incoming emails to"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "route53_zone_id" {
|
||||
description = "Route53 hosted zone ID for the domain"
|
||||
type = string
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue