-
Notifications
You must be signed in to change notification settings - Fork 759
Open
Labels
kind/bugCategorizes issue or PR as related to a bug.Categorizes issue or PR as related to a bug.version/5Categorizes issue or PR as related to version 5 of the provider.Categorizes issue or PR as related to version 5 of the provider.
Description
Confirmation
- This is a bug with an existing resource and is not a feature request or enhancement. Feature requests should be submitted with Cloudflare Support or your account team.
- I have searched the issue tracker and my issue isn't already found.
- I have replicated my issue using the latest version of the provider and it is still present.
Terraform and Cloudflare provider version
This an existing bug that was closed but never fixed #6076
This bug is still there and is very annoying, we have to keep destroying and recreating resource when making changes: Ignoring the fields does not work either
required_version = "~> 1.13.1"
required_providers {
cloudflare = {
source = "cloudflare/cloudflare"
version = "~> 5.12"
}
}
│ Error: Provider produced inconsistent result after apply
│
│ When applying changes to module.www_settings_dns_record.cloudflare_dns_record.dns_record, provider "provider[\"registry.terraform.io/cloudflare/cloudflare\"]" produced an unexpected new
│ value: .modified_on: was cty.StringVal("2025-11-09T10:03:13Z"), but now cty.StringVal("2025-11-09T10:08:38Z").
│
│ This is a bug in the provider, which should be reported in the provider's own issue tracker.
Affected resource(s)
- cloudflare_dns_record
Terraform configuration files
module "settings_dns_record" {
source = "../../../modules/cloudflare/dns"
zone_id = data.cloudflare_zone.org_com.zone_id
name = "settings"
content = data.cloudflare_zone.org_com.name
comment = "settings microservice"
proxied = true
tags = []
}
resource "cloudflare_dns_record" "dns_record" {
zone_id = var.zone_id
name = var.name
ttl = var.ttl
type = var.record_type
comment = var.comment
content = var.content
proxied = var.proxied
settings = {
flatten_cname = var.settings.flatten_cname
ipv4_only = var.settings.ipv4_only
ipv6_only = var.settings.ipv6_only
}
tags = var.tags
lifecycle {
ignore_changes = [
comment_modified_on,
created_on,
modified_on,
proxiable,
tags_modified_on,
]
}
}Link to debug output
none
Panic output
No response
Expected output
should create or update in place the dns record
Actual output
│ Error: Provider produced inconsistent result after apply
│
│ When applying changes to module.settings_dns_record.cloudflare_dns_record.dns_record, provider "provider[\"registry.terraform.io/cloudflare/cloudflare\"]" produced an unexpected new
│ value: .modified_on: was cty.StringVal("2025-11-09T10:03:13Z"), but now cty.StringVal("2025-11-09T10:08:38Z").
│
│ This is a bug in the provider, which should be reported in the provider's own issue tracker.
Steps to reproduce
- terraform init
- terraform apply
Additional factoids
No response
References
No response
Metadata
Metadata
Assignees
Labels
kind/bugCategorizes issue or PR as related to a bug.Categorizes issue or PR as related to a bug.version/5Categorizes issue or PR as related to version 5 of the provider.Categorizes issue or PR as related to version 5 of the provider.