2025-09-01 22:04:26 -07:00
|
|
|
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
|
|
|
|
}
|
2025-09-02 17:29:49 -07:00
|
|
|
|
|
|
|
variable "aws_account_id" {
|
|
|
|
description = "AWS Account ID for SES S3 bucket policy"
|
|
|
|
type = string
|
|
|
|
}
|