32 lines
551 B
Terraform
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 = []
|
|
} |