-
Notifications
You must be signed in to change notification settings - Fork 609
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
Error: Internal error encountered while processing change (1005) #1787
Comments
Thank you for reporting this issue! For maintainers to dig into issues it is required that all issues include the entirety of This issue has been marked with |
I'm not sure if this is related but we've hit a similar
I don't see it in the UI either We also have Looking at the original issue description |
|
With regard the the Having said that, the entries we have were all |
OOI, how much effort is it to mark an action as deprecated in the provider? That would have helped a lot in this situation. |
@jacobbednarz thank you for that information! I was not aware! Was there any official announcement? I can't seem to find it and looking at Cloudflare's official documentation below it seems like
Also, what is the difference between |
a deprecation in the provider wouldn't have helped here and manual intervention was always going to be required due to the way the resource tracks initial settings and attempts to reset them (unless it had identical payloads and lived under the same endpoint). in the future, this resource is planned to be replaced to combat similar problems; see #1646. re: API, I'm unsure if this has a publicly documented endpoint so I'd need to confirm with the service team. I'm also not certain if those docs on it being available in page rules are still accurate. |
cc @zaidoon1 |
Thanks for the explanation @jacobbednarz 🙇 Removing the |
Also @jacobbednarz when I run the code below I get this error message I know that that error is mentioned in the Plan-Dependent Settings that those settings should be set to When I look at the terraform state file I see the default values being set for the resource when I set them to provider "cloudflare" {
# email pulled from $CLOUDFLARE_EMAIL environment variable
# token pulled from $CLOUDFLARE_API_KEY environment variable
}
terraform {
required_providers {
cloudflare = {
source = "cloudflare/cloudflare"
version = "= 3.16.0"
}
}
}
resource "cloudflare_zone" "this" {
zone = "test.com"
plan = "enterprise"
type = "partial"
}
resource "cloudflare_zone_settings_override" "enforced_settings" {
zone_id = cloudflare_zone.this.id
settings {
always_online = "off"
always_use_https = "on"
automatic_https_rewrites = "off"
binary_ast = "off"
brotli = "off"
browser_cache_ttl = 14400
browser_check = "on"
cache_level = "aggressive"
challenge_ttl = 1800
ciphers = []
cname_flattening = "flatten_at_root"
development_mode = "off"
early_hints = "off"
email_obfuscation = "on"
filter_logs_to_cloudflare = "off"
h2_prioritization = "off"
hotlink_protection = "off"
http2 = "on"
http3 = "off"
image_resizing = "off"
ip_geolocation = "on"
ipv6 = "on"
log_to_cloudflare = "on"
max_upload = 100
min_tls_version = "1.2"
minify {
css = "off"
html = "off"
js = "off"
}
mirage = "off"
mobile_redirect {
mobile_subdomain = ""
status = "off"
strip_uri = false
}
opportunistic_encryption = "off"
opportunistic_onion = "on"
orange_to_orange = "off"
origin_error_page_pass_thru = "off"
polish = "off"
prefetch_preload = "off"
privacy_pass = "on"
proxy_read_timeout = "100"
pseudo_ipv4 = "off"
response_buffering = "off"
rocket_loader = "off"
security_header {
enabled = false
include_subdomains = false
max_age = 0
nosniff = false
preload = false
}
security_level = "medium"
server_side_exclude = "on"
sort_query_string_for_cache = "off"
ssl = "full"
tls_1_2_only = "off"
tls_1_3 = "on"
tls_client_auth = "off"
true_client_ip_header = "off"
universal_ssl = "on"
visitor_ip = "on"
waf = "off"
webp = "off"
websockets = "on"
zero_rtt = "off"
}
} |
i'd advise only managing the settings in code that you've actually changed until this resource is addressed. if you're having issues with a specific field that should be editable but isn't, are you able to open a specific issue or customer support ticket so it can be routed to the correct service team? |
Thank you thats great news, the resource has been giving us some trouble. Yes i'm able to create customer support tickets. |
feel free to ping me on the numbers once you have them and i can poke some folks internally with this thread when it comes up. |
regarding comms on the change, i've confirmed with the service team.
thanks for the feedback! |
From my understanding, we can't enable Always Online for a given URL anymore, only for a whole domain/zone. Is that correct ? Thank you |
correct |
@jacobbednarz could you tell which provider version it is deprecated from? Is it v3.19.0? |
Confirmation
Terraform and Cloudflare provider version
Terraform v1.2.3
on darwin_amd64
Affected resource(s)
Terraform configuration files
Debug output
Panic output
No response
Expected output
Apply complete! Resources: 0 added, 0 changed, 1 destroyed.
Actual output
Error: Internal error encountered while processing change (1005)
Steps to reproduce
zone_settings_override
resource to it.zone_settings_override
resource.Additional factoids
No response
References
No response
The text was updated successfully, but these errors were encountered: