From 457e1554b6b75daecc82af146989f9179bcb9e25 Mon Sep 17 00:00:00 2001 From: Jacob Bednarz Date: Wed, 29 Jan 2025 11:08:02 +1100 Subject: [PATCH] fix(dns_record): no need for computed defaults --- internal/services/dns_record/schema.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/internal/services/dns_record/schema.go b/internal/services/dns_record/schema.go index 5928099374..074ce58c99 100755 --- a/internal/services/dns_record/schema.go +++ b/internal/services/dns_record/schema.go @@ -371,13 +371,11 @@ func ResourceSchema(ctx context.Context) schema.Schema { Description: "When enabled, only A records will be generated, and AAAA records will not be created. This setting is intended for exceptional cases. Note that this option only applies to proxied records and it has no effect on whether Cloudflare communicates with the origin using IPv4 or IPv6.", Computed: true, Optional: true, - Default: booldefault.StaticBool(false), }, "ipv6_only": schema.BoolAttribute{ Description: "When enabled, only AAAA records will be generated, and A records will not be created. This setting is intended for exceptional cases. Note that this option only applies to proxied records and it has no effect on whether Cloudflare communicates with the origin using IPv4 or IPv6.", Computed: true, Optional: true, - Default: booldefault.StaticBool(false), }, "flatten_cname": schema.BoolAttribute{ Description: "If enabled, causes the CNAME record to be resolved externally and the resulting address records (e.g., A and AAAA) to be returned instead of the CNAME record itself. This setting is unavailable for proxied records, since they are always flattened.",