From 1806a70274fb778ceaf748641f7bbad33eb6f2aa Mon Sep 17 00:00:00 2001 From: The Magician Date: Thu, 15 Apr 2021 10:31:32 -0700 Subject: [PATCH] dns/api.yaml: add missing record types (#4689) (#403) Update the list of valid DNS record types to match the list documented at https://cloud.google.com/dns/docs/records. In particular this was hurting people who were previously deploying DNSSEC key records via terraform. Closes https://github.com/hashicorp/terraform-provider-google/issues/8897 Signed-off-by: Modular Magician --- plugins/modules/gcp_dns_resource_record_set.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/modules/gcp_dns_resource_record_set.py b/plugins/modules/gcp_dns_resource_record_set.py index 5718efc..a9c1f75 100644 --- a/plugins/modules/gcp_dns_resource_record_set.py +++ b/plugins/modules/gcp_dns_resource_record_set.py @@ -59,8 +59,8 @@ options: type: description: - One of valid DNS resource types. - - 'Some valid choices include: "A", "AAAA", "CAA", "CNAME", "MX", "NAPTR", "NS", - "PTR", "SOA", "SPF", "SRV", "TLSA", "TXT"' + - 'Some valid choices include: "A", "AAAA", "CAA", "CNAME", "DNSKEY", "DS", "IPSECVPNKEY", + "MX", "NAPTR", "NS", "PTR", "SOA", "SPF", "SRV", "SSHFP", "TLSA", "TXT"' required: true type: str ttl: