You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I applied some Terraform that included a dnsimple_zone_record resource like this:
resource "dnsimple_zone_record" "domain" {
zone_name = dnsimple_zone.zone.name
name = local.stack_info[var.env_name].subdomain
value = var.external_hostname
type = "cname"
ttl = 600
}
The record created successfully, but Terraform reported the following error:
│ Error: Provider produced inconsistent result after apply
│
│ When applying changes to dnsimple_zone_record.domain, provider "provider[\"registry.opentofu.org/dnsimple/dnsimple\"]" produced an unexpected new value: .type: was cty.StringVal("cname"), but now cty.StringVal("CNAME").
│
│ This is a bug in the provider, which should be reported in the provider's own issue tracker.
I adjusted the record type value to "CNAME" rather than "cname", and the error didn't recur, but I figured it warranted mentioning here regardless.
The text was updated successfully, but these errors were encountered:
I applied some Terraform that included a
dnsimple_zone_record
resource like this:The record created successfully, but Terraform reported the following error:
I adjusted the record
type
value to"CNAME"
rather than"cname"
, and the error didn't recur, but I figured it warranted mentioning here regardless.The text was updated successfully, but these errors were encountered: