terraform-demo/modules/route53-record/variables.tf
2023-01-11 20:21:43 +09:00

20 lines
391 B
HCL

variable "zone_id" {
description = "set host-zone id"
type = string
}
variable "prefix" {
description = "set host-zone id"
type = string
}
variable "type" {
description = "set host-zone id"
type = string
}
variable "ttl" {
description = "set host-zone id"
type = string
}
variable "record_list" {
description = "set host-zone id"
type = list(string)
}