If anyone else is struggling with

If anyone else is struggling with cloudflare_zone_setting in the 5.2.0 provider, e.g.: │ │ with cloudflare_zone_setting.secure-form-edge["true_client_ip_header"], │ on main.tf line 119, in resource "cloudflare_zone_setting" "secure-form-edge": │ 119: resource "cloudflare_zone_setting" "secure-form-edge" { │ │ PATCH "https://api.cloudflare.com/client/v4/zones/4d92d6b4b53b1fbacf428115d664976a/settings/true_client_ip_header": 400 Bad Request {"success":false,"errors":[{"code":1015,"message":"Not allowed to edit setting for true_client_ip_header"}],"messages":[],"result":null} Make sure to use depends_on for cloudflare_zone_subscription, cloudflare_dns_record, and cloudflare_zone, e.g.:
resource "cloudflare_zone_setting" "feature-edge" {
zone_id = cloudflare_zone.feature-edge.id

# apparently the id and setting_id both need to be set, cuz...reasons? :slight_smile:
id = each.key
setting_id = each.key
value = each.value

for_each = local.cloudflare_zone_settings
depends_on = [
cloudflare_zone_subscription.moneystuff,
cloudflare_dns_record.feature-edge,
cloudflare_zone.feature-edge
]
}
resource "cloudflare_zone_setting" "feature-edge" {
zone_id = cloudflare_zone.feature-edge.id

# apparently the id and setting_id both need to be set, cuz...reasons? :slight_smile:
id = each.key
setting_id = each.key
value = each.value

for_each = local.cloudflare_zone_settings
depends_on = [
cloudflare_zone_subscription.moneystuff,
cloudflare_dns_record.feature-edge,
cloudflare_zone.feature-edge
]
}
1 Reply
jb
jb2w ago
while indirectly correct, the reasoning is that they are plan specific entitlements and you need to have a correct plan before attempting to use them. you do not need this for all zone settings.

Did you find this page helpful?