123456789101112131415161718192021222324252627 |
- variable "legacy_private_dns" {
- description = "A map of legacy hostnames to lists of IPs. To disable, just remove an entry."
- type = map(any)
- }
- variable "legacy_private_cname_dns" {
- description = "A map of legacy hostnames to lists of dns entries. To disable, just remove an entry."
- type = map(any)
- }
- variable "legacy_public_dns" {
- description = "A map of legacy hostnames to lists of IPs. To disable, just remove an entry."
- type = map(any)
- }
- variable "legacy_public_cname_dns" {
- description = "A map of legacy hostnames to lists of dns entries. To disable, just remove an entry."
- type = map(any)
- }
- # inherited variables
- variable "tags" { type = map(any) }
- variable "dns_info" { type = map(any) }
- variable "standard_tags" { type = map(any) }
- variable "aws_account_id" { type = string }
- variable "aws_partition" { type = string }
- variable "account_list" { type = list(any) }
|