Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

inconsistent result from provider after apply #237

Open
callafeucht-mbh opened this issue Oct 18, 2024 · 0 comments
Open

inconsistent result from provider after apply #237

callafeucht-mbh opened this issue Oct 18, 2024 · 0 comments

Comments

@callafeucht-mbh
Copy link

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant