1
0
Files
terraform.examples/modules/networking/r53-record/variables.tf
T
2026-02-13 15:44:24 +08:00

32 lines
551 B
Terraform

variable "zone_id" {}
variable "record_name" {}
variable "record_type" {}
variable "record_ttl" {
type = number
default = 900
}
variable "record_values" {
type = list(string)
}
variable "set_identifier" {
type = string
default = ""
}
variable "alias" {
type = list(
object({
zone_id = string
name = string
evaluate_target_health = bool
})
)
default = []
}
variable "weighted_routing_policy" {
type = list(
object({
weight = number
})
)
default = []
}