From dc157d5c480c241b303f3731cadd4d7332419ed4 Mon Sep 17 00:00:00 2001 From: Simon Schneider Date: Wed, 6 Dec 2023 15:41:59 +0000 Subject: [PATCH] fix(public_ip_addresses): reverse_fqdn type Use string as variable type for reverse_fqdn --- modules/networking/public_ip_addresses/variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/networking/public_ip_addresses/variables.tf b/modules/networking/public_ip_addresses/variables.tf index 260f56de25..24a16437a2 100644 --- a/modules/networking/public_ip_addresses/variables.tf +++ b/modules/networking/public_ip_addresses/variables.tf @@ -70,7 +70,7 @@ variable "generate_domain_name_label" { variable "reverse_fqdn" { description = "(Optional) A fully qualified domain name that resolves to this public IP address. If the reverseFqdn is specified, then a PTR DNS record is created pointing from the IP address in the in-addr.arpa domain to the reverse FQDN." - type = bool + type = string default = null }