cloudflare / terraform-provider-cloudflare

Cloudflare Terraform Provider
https://registry.terraform.io/providers/cloudflare/cloudflare
Mozilla Public License 2.0
764 stars 588 forks source link

Modifying `origin_max_http_version` zone setting throws read-only error #1987

Closed reedloden closed 1 year ago

reedloden commented 1 year ago

Confirmation

Terraform and Cloudflare provider version

Terraform v1.3.3
on darwin_arm64
+ provider registry.terraform.io/cloudflare/cloudflare v3.26.0
+ provider registry.terraform.io/hashicorp/dns v3.2.3

Affected resource(s)

Terraform configuration files

resource "cloudflare_zone_settings_override" "default" {
  zone_id = cloudflare_zone.default.id

  settings {
    origin_max_http_version  = lookup(var.zone_settings_override, "origin_max_http_version", "2")
  }
}

Link to debug output

None

Panic output

No response

Expected output

origin_max_http_version zone setting is set to 2

Actual output

Error: invalid zone setting "origin_max_http_version" (value: 2) found - cannot be set as it is read only

Steps to reproduce

  1. Add terraform config for setting the
  2. Try to apply setting
  3. Error thrown

Additional factoids

https://registry.terraform.io/providers/cloudflare/cloudflare/latest/docs/resources/zone_settings_override#plan-dependent-settings makes it seem like this is a plan-dependent setting, but all our zones utilize enterprise plan.

Manual setting this setting works fine:

curl -X PATCH "https://api.cloudflare.com/client/v4/zones/abcdefg1234567/settings/origin_max_http_version" \
     -H "X-Auth-Email: test@example.com" \
     -H "X-Auth-Key: 123456789" \
     -H "Content-Type: application/json" \
     --data '{"value":"2"}'
{
  "result": {
    "id": "origin_max_http_version",
    "modified_on": "2022-10-21T07:38:06.9834Z",
    "value": "2"
  },
  "success": true,
  "errors": [],
  "messages": []
}

References

github-actions[bot] commented 1 year ago

Thank you for reporting this issue! For maintainers to dig into issues it is required that all issues include the entirety of TF_LOG=DEBUG output to be provided. The only parts that should be redacted are your user credentials in the X-Auth-Key, X-Auth-Email and Authorization HTTP headers. Details such as zone or account identifiers are not considered sensitive but can be redacted if you are very cautious. This log file provides additional context from Terraform, the provider and the Cloudflare API that helps in debugging issues. Without it, maintainers are very limited in what they can do and may hamper diagnosis efforts.

This issue has been marked with triage/needs-information and is unlikely to receive maintainer attention until the log file is provided making this a complete bug report.

jtthackery commented 1 year ago

Hi, I've also encountered this issue with Terraform 1.3.4 and cloudflare provider version 3.2.7.

I've confirmed that my API Token has the #zone_settings:edit permission.

Here's a redacted output with the TF_LOG flag set to DEBUG:

2022-11-09T10:52:16.711-0800 [INFO]  Terraform version: 1.3.4
2022-11-09T10:52:16.711-0800 [DEBUG] using github.com/hashicorp/go-tfe v1.9.0
2022-11-09T10:52:16.711-0800 [DEBUG] using github.com/hashicorp/hcl/v2 v2.14.1
2022-11-09T10:52:16.711-0800 [DEBUG] using github.com/hashicorp/terraform-config-inspect v0.0.0-20210209133302-4fd17a0faac2
2022-11-09T10:52:16.711-0800 [DEBUG] using github.com/hashicorp/terraform-svchost v0.0.0-20200729002733-f050f53b9734
2022-11-09T10:52:16.711-0800 [DEBUG] using github.com/zclconf/go-cty v1.12.0
2022-11-09T10:52:16.711-0800 [INFO]  Go runtime version: go1.19.3
2022-11-09T10:52:16.711-0800 [INFO]  CLI args: []string{"terraform", "apply"}
2022-11-09T10:52:16.711-0800 [DEBUG] Attempting to open CLI config file: /Users/<redacted>/.terraformrc
2022-11-09T10:52:16.711-0800 [INFO]  Loading CLI configuration from /Users/<redacted>/.terraformrc
2022-11-09T10:52:16.712-0800 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2022-11-09T10:52:16.712-0800 [DEBUG] ignoring non-existing provider search directory /Users/<redacted>/.terraform.d/plugins
2022-11-09T10:52:16.712-0800 [DEBUG] ignoring non-existing provider search directory /Users/<redacted>/Library/Application Support/io.terraform/plugins
2022-11-09T10:52:16.712-0800 [DEBUG] ignoring non-existing provider search directory /Library/Application Support/io.terraform/plugins
2022-11-09T10:52:16.712-0800 [INFO]  CLI command args: []string{"apply"}
2022-11-09T10:52:16.715-0800 [INFO]  Attempting to use session-derived credentials
2022-11-09T10:52:17.078-0800 [INFO]  Successfully derived credentials from session
2022-11-09T10:52:17.078-0800 [INFO]  AWS Auth provider used: "AssumeRoleProvider"
2022-11-09T10:52:17.097-0800 [DEBUG] Trying to get account information via sts:GetCallerIdentity
2022-11-09T10:52:17.097-0800 [DEBUG] [aws-sdk-go] DEBUG: Request sts/GetCallerIdentity Details:
---[ REQUEST POST-SIGN ]-----------------------------
POST / HTTP/1.1
Host: sts.amazonaws.com
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/1.3.4 aws-sdk-go/1.42.35 (go1.19.3; darwin; arm64)
Content-Length: 43
Authorization: <redacted>
Content-Type: application/x-www-form-urlencoded; charset=utf-8
X-Amz-Date: 20221109T185217Z
X-Amz-Security-Token: <redacted>
Accept-Encoding: gzip

Action=GetCallerIdentity&Version=2011-06-15
-----------------------------------------------------
2022-11-09T10:52:17.431-0800 [DEBUG] [aws-sdk-go] DEBUG: Response sts/GetCallerIdentity Details:
---[ RESPONSE ]--------------------------------------
HTTP/1.1 200 OK
Connection: close
Content-Length: 467
Content-Type: text/xml
Date: Wed, 09 Nov 2022 18:52:16 GMT
X-Amzn-Requestid: c9c816ed-6d2f-4b30-a493-e025567fb760

-----------------------------------------------------
2022-11-09T10:52:17.431-0800 [DEBUG] [aws-sdk-go] <GetCallerIdentityResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
  <GetCallerIdentityResult>
    <Arn><redacted>0</Arn>
    <UserId><redacted></UserId>
    <Account>044506312965</Account>
  </GetCallerIdentityResult>
  <ResponseMetadata>
    <RequestId>c9c816ed-6d2f-4b30-a493-e025567fb760</RequestId>
  </ResponseMetadata>
</GetCallerIdentityResponse>
2022-11-09T10:52:17.455-0800 [DEBUG] checking for provisioner in "."
2022-11-09T10:52:17.459-0800 [DEBUG] checking for provisioner in "/opt/homebrew/bin"
2022-11-09T10:52:17.460-0800 [INFO]  backend/local: starting Apply operation
2022-11-09T10:52:17.462-0800 [DEBUG] [aws-sdk-go] DEBUG: Request s3/ListObjects Details:
---[ REQUEST POST-SIGN ]-----------------------------
GET /?max-keys=1000&prefix=env%3A%2F HTTP/1.1
Host: <redacted>-infra-root.s3.eu-west-1.amazonaws.com
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/1.3.4 aws-sdk-go/1.42.35 (go1.19.3; darwin; arm64)
Authorization: <redacted>
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date: 20221109T185217Z
X-Amz-Security-Token: <redacted>
Accept-Encoding: gzip

-----------------------------------------------------
2022-11-09T10:52:18.122-0800 [DEBUG] [aws-sdk-go] DEBUG: Response s3/ListObjects Details:
---[ RESPONSE ]--------------------------------------
HTTP/1.1 200 OK
Connection: close
Transfer-Encoding: chunked
Content-Type: application/xml
Date: Wed, 09 Nov 2022 18:52:19 GMT
Server: AmazonS3
X-Amz-Bucket-Region: eu-west-1
X-Amz-Id-2: WNtwmn5K3Lks3OiziDAy7qJaVzR3O3MuJxh5LJsXN2s5ZnJlHbZoGooH3cXYPapLbLvk31OhfeQ=
X-Amz-Request-Id: 62SFE5VCZVVRRW5M

-----------------------------------------------------
2022-11-09T10:52:18.122-0800 [DEBUG] [aws-sdk-go] <?xml version="1.0" encoding="UTF-8"?>
<ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name><redacted>-infra-root</Name><Prefix>env:/</Prefix><Marker></Marker><MaxKeys>1000</MaxKeys><IsTruncated>false</IsTruncated></ListBucketResult>
2022-11-09T10:52:18.127-0800 [DEBUG] [aws-sdk-go] DEBUG: Request dynamodb/PutItem Details:
---[ REQUEST POST-SIGN ]-----------------------------
POST / HTTP/1.1
Host: dynamodb.eu-west-1.amazonaws.com
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/1.3.4 aws-sdk-go/1.42.35 (go1.19.3; darwin; arm64)
Content-Length: 470
Accept-Encoding: identity
Authorization: <redacted>
Content-Type: application/x-amz-json-1.0
X-Amz-Date: 20221109T185218Z
X-Amz-Security-Token: <redacted>
X-Amz-Target: DynamoDB_20120810.PutItem

{"ConditionExpression":"attribute_not_exists(LockID)","Item":{"Info":{"S":"{\"ID\":\"2c024405-f0b8-2c77-9090-9626d1eaa463\",\"Operation\":\"OperationTypeApply\",\"Info\":\"\",\"Who\":\"<redacted>\",\"Version\":\"1.3.4\",\"Created\":\"2022-11-09T18:52:18.122676Z\",\"Path\":\"<redacted>/global\"}"},"LockID":{"S":"<redacted>/global"}},"TableName":"<redacted>"}
-----------------------------------------------------
Acquiring state lock. This may take a few moments...
2022-11-09T10:52:18.776-0800 [DEBUG] [aws-sdk-go] DEBUG: Response dynamodb/PutItem Details:
---[ RESPONSE ]--------------------------------------
HTTP/1.1 200 OK
Connection: close
Content-Length: 2
Content-Type: application/x-amz-json-1.0
Date: Wed, 09 Nov 2022 18:52:18 GMT
Server: Server
X-Amz-Crc32: 2745614147
X-Amzn-Requestid: O393JUG156T5D3K26GRUP3O0RRVV4KQNSO5AEMVJF66Q9ASUAAJG

-----------------------------------------------------
2022-11-09T10:52:18.776-0800 [DEBUG] [aws-sdk-go] {}
2022-11-09T10:52:18.777-0800 [DEBUG] [aws-sdk-go] DEBUG: Request s3/GetObject Details:
---[ REQUEST POST-SIGN ]-----------------------------
GET /tf/global/cloudflare/global HTTP/1.1
Host: <redacted>-infra-root.s3.eu-west-1.amazonaws.com
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/1.3.4 aws-sdk-go/1.42.35 (go1.19.3; darwin; arm64)
Authorization: <redacted>
X-Amz-Content-Sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
X-Amz-Date: 20221109T185218Z
X-Amz-Security-Token: <redacted>
Accept-Encoding: gzip

-----------------------------------------------------
2022-11-09T10:52:19.419-0800 [DEBUG] [aws-sdk-go] DEBUG: Response s3/GetObject Details:
---[ RESPONSE ]--------------------------------------
HTTP/1.1 200 OK
Connection: close
Content-Length: 3867
Accept-Ranges: bytes
Content-Type: application/json
Date: Wed, 09 Nov 2022 18:52:20 GMT
Etag: "<redacted>"
Last-Modified: Wed, 09 Nov 2022 18:25:12 GMT
Server: AmazonS3
X-Amz-Id-2: 0KJGoiNzMw3KtIqu8s5BXotvRYHlB5//buakpZGgSn3G1yOlSwAI7e0kuw6iOV05XBptCnWavmQ=
X-Amz-Request-Id: JDZ2NSJD02DVZRHS
X-Amz-Server-Side-Encryption: AES256
X-Amz-Version-Id: KT25EME0mflxKr9fXa7kBHnYaHvwO9E2

-----------------------------------------------------
2022-11-09T10:52:19.419-0800 [DEBUG] [aws-sdk-go]
2022-11-09T10:52:19.423-0800 [DEBUG] [aws-sdk-go] DEBUG: Request dynamodb/GetItem Details:
---[ REQUEST POST-SIGN ]-----------------------------
POST / HTTP/1.1
Host: dynamodb.eu-west-1.amazonaws.com
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/1.3.4 aws-sdk-go/1.42.35 (go1.19.3; darwin; arm64)
Content-Length: 182
Accept-Encoding: identity
Authorization: <redacted>
Content-Type: application/x-amz-json-1.0
X-Amz-Date: 20221109T185219Z
X-Amz-Security-Token: <redacted>
X-Amz-Target: DynamoDB_20120810.GetItem

{"ConsistentRead":true,"Key":{"LockID":{"S":"<redacted>/global-md5"}},"ProjectionExpression":"LockID, Digest","TableName":"<redacted>"}
-----------------------------------------------------
2022-11-09T10:52:20.062-0800 [DEBUG] [aws-sdk-go] DEBUG: Response dynamodb/GetItem Details:
---[ RESPONSE ]--------------------------------------
HTTP/1.1 200 OK
Connection: close
Content-Length: 132
Content-Type: application/x-amz-json-1.0
Date: Wed, 09 Nov 2022 18:52:19 GMT
Server: Server
X-Amz-Crc32: 2989004779
X-Amzn-Requestid: DTEQPK4ESP1KQ1QBT2GOJ5VV1VVV4KQNSO5AEMVJF66Q9ASUAAJG

-----------------------------------------------------
2022-11-09T10:52:20.062-0800 [DEBUG] [aws-sdk-go] {"Item":{"Digest":{"S":"<redacted>"},"LockID":{"S":"<redacted>/global-md5"}}}
2022-11-09T10:52:20.066-0800 [DEBUG] created provider logger: level=debug
2022-11-09T10:52:20.066-0800 [INFO]  provider: configuring client automatic mTLS
2022-11-09T10:52:20.088-0800 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/3.27.0/darwin_arm64/terraform-provider-cloudflare_v3.27.0 args=[.terraform/providers/registry.terraform.io/cloudflare/cloudflare/3.27.0/darwin_arm64/terraform-provider-cloudflare_v3.27.0]
2022-11-09T10:52:20.091-0800 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/3.27.0/darwin_arm64/terraform-provider-cloudflare_v3.27.0 pid=64193
2022-11-09T10:52:20.092-0800 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/3.27.0/darwin_arm64/terraform-provider-cloudflare_v3.27.0
2022-11-09T10:52:20.132-0800 [INFO]  provider.terraform-provider-cloudflare_v3.27.0: configuring server automatic mTLS: timestamp=2022-11-09T10:52:20.132-0800
2022-11-09T10:52:20.147-0800 [DEBUG] provider: using plugin: version=5
2022-11-09T10:52:20.147-0800 [DEBUG] provider.terraform-provider-cloudflare_v3.27.0: plugin address: address=/var/folders/r0/cf91s0kd5zq1bx7fknd4nq100000gq/T/plugin3439307050 network=unix timestamp=2022-11-09T10:52:20.147-0800
2022-11-09T10:52:20.166-0800 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF"
2022-11-09T10:52:20.167-0800 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/3.27.0/darwin_arm64/terraform-provider-cloudflare_v3.27.0 pid=64193
2022-11-09T10:52:20.167-0800 [DEBUG] provider: plugin exited
2022-11-09T10:52:20.167-0800 [DEBUG] Building and walking validate graph
2022-11-09T10:52:20.168-0800 [DEBUG] ProviderTransformer: "cloudflare_zone_settings_override.<redacted>" (*terraform.NodeValidatableResource) needs provider["registry.terraform.io/cloudflare/cloudflare"]
2022-11-09T10:52:20.168-0800 [DEBUG] ReferenceTransformer: "cloudflare_zone_settings_override.<redacted>" references: [local.zone_id (expand)]
2022-11-09T10:52:20.168-0800 [DEBUG] ReferenceTransformer: "local.zone_id (expand)" references: []
2022-11-09T10:52:20.168-0800 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/cloudflare/cloudflare\"]" references: []
2022-11-09T10:52:20.168-0800 [DEBUG] Starting graph walk: walkValidate
2022-11-09T10:52:20.169-0800 [DEBUG] created provider logger: level=debug
2022-11-09T10:52:20.169-0800 [INFO]  provider: configuring client automatic mTLS
2022-11-09T10:52:20.173-0800 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/3.27.0/darwin_arm64/terraform-provider-cloudflare_v3.27.0 args=[.terraform/providers/registry.terraform.io/cloudflare/cloudflare/3.27.0/darwin_arm64/terraform-provider-cloudflare_v3.27.0]
2022-11-09T10:52:20.175-0800 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/3.27.0/darwin_arm64/terraform-provider-cloudflare_v3.27.0 pid=64194
2022-11-09T10:52:20.175-0800 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/3.27.0/darwin_arm64/terraform-provider-cloudflare_v3.27.0
2022-11-09T10:52:20.182-0800 [INFO]  provider.terraform-provider-cloudflare_v3.27.0: configuring server automatic mTLS: timestamp=2022-11-09T10:52:20.182-0800
2022-11-09T10:52:20.193-0800 [DEBUG] provider: using plugin: version=5
2022-11-09T10:52:20.193-0800 [DEBUG] provider.terraform-provider-cloudflare_v3.27.0: plugin address: address=/var/folders/r0/cf91s0kd5zq1bx7fknd4nq100000gq/T/plugin2059415361 network=unix timestamp=2022-11-09T10:52:20.193-0800
2022-11-09T10:52:20.208-0800 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF"
2022-11-09T10:52:20.208-0800 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/3.27.0/darwin_arm64/terraform-provider-cloudflare_v3.27.0 pid=64194
2022-11-09T10:52:20.208-0800 [DEBUG] provider: plugin exited
2022-11-09T10:52:20.208-0800 [INFO]  backend/local: apply calling Plan
2022-11-09T10:52:20.208-0800 [DEBUG] Building and walking plan graph for NormalMode
2022-11-09T10:52:20.209-0800 [DEBUG] ProviderTransformer: "cloudflare_zone_settings_override.<redacted> (expand)" (*terraform.nodeExpandPlannableResource) needs provider["registry.terraform.io/cloudflare/cloudflare"]
2022-11-09T10:52:20.209-0800 [DEBUG] ReferenceTransformer: "cloudflare_zone_settings_override.<redacted> (expand)" references: [local.zone_id (expand)]
2022-11-09T10:52:20.209-0800 [DEBUG] ReferenceTransformer: "local.zone_id (expand)" references: []
2022-11-09T10:52:20.209-0800 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/cloudflare/cloudflare\"]" references: []
2022-11-09T10:52:20.209-0800 [DEBUG] Starting graph walk: walkPlan
2022-11-09T10:52:20.209-0800 [DEBUG] created provider logger: level=debug
2022-11-09T10:52:20.209-0800 [INFO]  provider: configuring client automatic mTLS
2022-11-09T10:52:20.213-0800 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/3.27.0/darwin_arm64/terraform-provider-cloudflare_v3.27.0 args=[.terraform/providers/registry.terraform.io/cloudflare/cloudflare/3.27.0/darwin_arm64/terraform-provider-cloudflare_v3.27.0]
2022-11-09T10:52:20.214-0800 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/3.27.0/darwin_arm64/terraform-provider-cloudflare_v3.27.0 pid=64195
2022-11-09T10:52:20.214-0800 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/3.27.0/darwin_arm64/terraform-provider-cloudflare_v3.27.0
2022-11-09T10:52:20.223-0800 [INFO]  provider.terraform-provider-cloudflare_v3.27.0: configuring server automatic mTLS: timestamp=2022-11-09T10:52:20.223-0800
2022-11-09T10:52:20.233-0800 [DEBUG] provider: using plugin: version=5
2022-11-09T10:52:20.233-0800 [DEBUG] provider.terraform-provider-cloudflare_v3.27.0: plugin address: address=/var/folders/r0/cf91s0kd5zq1bx7fknd4nq100000gq/T/plugin2357239336 network=unix timestamp=2022-11-09T10:52:20.233-0800
2022-11-09T10:52:20.247-0800 [WARN]  ValidateProviderConfig from "provider[\"registry.terraform.io/cloudflare/cloudflare\"]" changed the config value, but that value is unused
2022-11-09T10:52:20.247-0800 [INFO]  ReferenceTransformer: reference not found: "local.zone_id"
2022-11-09T10:52:20.247-0800 [DEBUG] ReferenceTransformer: "cloudflare_zone_settings_override.<redacted>" references: []
cloudflare_zone_settings_override.<redacted>: Refreshing state... [id=8fbf130c80ad8631944d129efa4be525]
2022-11-09T10:52:20.252-0800 [DEBUG] provider.terraform-provider-cloudflare_v3.27.0: Cloudflare API Request Details:
---[ REQUEST ]---------------------------------------
GET /client/v4/zones/8fbf130c80ad8631944d129efa4be525 HTTP/1.1
Host: api.cloudflare.com
User-Agent: terraform/1.3.4 terraform-plugin-sdk/2.10.1 terraform-provider-cloudflare/3.27.0
Authorization: <redacted>
Content-Type: application/json
Accept-Encoding: gzip

-----------------------------------------------------: timestamp=2022-11-09T10:52:20.252-0800
2022-11-09T10:52:20.594-0800 [DEBUG] provider.terraform-provider-cloudflare_v3.27.0: Cloudflare API Response Details:
---[ RESPONSE ]--------------------------------------
HTTP/2.0 200 OK
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Cf-Cache-Status: DYNAMIC
Cf-Ray: 7678beb2d9a19e52-SJC
Content-Type: application/json
Date: Wed, 09 Nov 2022 18:52:20 GMT
Expires: Sun, 25 Jan 1981 05:00:00 GMT
Pragma: no-cache
Server: cloudflare
Set-Cookie: __cflb=0H28vgHxwvgAQtjUGU4vq74ZFe3sNVUZLyHxL2GPLBP; SameSite=Lax; path=/; expires=Wed, 09-Nov-22 21:22:21 GMT; HttpOnly
Set-Cookie: __cfruid=96d5f6ba2bf53ab05d20d028e0a87c22960367ba-1668019940; path=/; domain=.api.cloudflare.com; HttpOnly; Secure; SameSite=None
Strict-Transport-Security: max-age=31536000
Vary: Accept-Encoding
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN

{
 "result": {
  "id": "8fbf130c80ad8631944d129efa4be525",
  "name": "<redacted>.com",
  "status": "active",
  "paused": false,
  "type": "partial",
  "development_mode": -17550660,
  "verification_key": "422141295-255239665",
  "cname_suffix": "cdn.cloudflare.net",
  "original_name_servers": [
   "ns-1240.awsdns-27.org",
   "ns-1938.awsdns-50.co.uk",
   "ns-8.awsdns-01.com",
   "ns-880.awsdns-46.net"
  ],
  "original_registrar": "amazon registrar, inc. (id: 468)",
  "original_dnshost": null,
  "modified_on": "2022-10-03T16:48:03.687426Z",
  "created_on": "2020-03-27T11:54:25.045458Z",
  "activated_on": "2020-03-31T11:14:37.188296Z",
  "meta": {
   "step": 2,
   "custom_certificate_quota": 1,
   "page_rule_quota": 100,
   "phishing_detected": false,
   "multiple_railguns_allowed": false
  },
  "owner": {
   "id": "<redacted>",
   "type": "organization",
   "name": "<redacted>"
  },
  "account": {
   "id": "<redacted>",
   "name": "<redacted>"
  },
  "tenant": {
   "id": null,
   "name": null
  },
  "tenant_unit": {
   "id": null
  },
  "permissions": [
   "#access:edit",
   "#access:read",
   "#analytics:read",
   "#app:edit",
   "#auditlogs:read",
   "#billing:read",
   "#blocks:edit",
   "#blocks:read",
   "#cache_purge:edit",
   "#dns_records:edit",
   "#dns_records:read",
   "#fbm_acc:edit",
   "#fbm:edit",
   "#fbm:read",
   "#healthchecks:edit",
   "#healthchecks:read",
   "#http_applications:edit",
   "#http_applications:read",
   "#image:edit",
   "#image:read",
   "#lb:edit",
   "#lb:read",
   "#legal:read",
   "#logs:edit",
   "#logs:read",
   "#magic:edit",
   "#magic:read",
   "#member:read",
   "#organization:edit",
   "#organization:read",
   "#ssl:edit",
   "#ssl:read",
   "#stream:edit",
   "#stream:read",
   "#subscription:edit",
   "#subscription:read",
   "#teams:edit",
   "#teams:read",
   "#teams:report",
   "#waf:edit",
   "#waf:read",
   "#waitingroom:edit",
   "#waitingroom:read",
   "#webhooks:edit",
   "#webhooks:read",
   "#worker:edit",
   "#worker:read",
   "#zaraz:edit",
   "#zaraz:read",
   "#zone:edit",
   "#zone:read",
   "#zone_settings:edit",
   "#zone_settings:read"
  ],
  "plan": {
   "id": "94f3b7b768b0458b56d2cac4fe5ec0f9",
   "name": "Enterprise Website",
   "price": 0,
   "currency": "USD",
   "frequency": "",
   "is_subscribed": true,
   "can_subscribe": true,
   "legacy_id": "enterprise",
   "legacy_discount": false,
   "externally_managed": true
  }
 },
 "success": true,
 "errors": [],
 "messages": []
}
-----------------------------------------------------: timestamp=2022-11-09T10:52:20.594-0800
2022-11-09T10:52:20.596-0800 [DEBUG] provider.terraform-provider-cloudflare_v3.27.0: Cloudflare API Request Details:
---[ REQUEST ]---------------------------------------
GET /client/v4/zones/8fbf130c80ad8631944d129efa4be525/settings HTTP/1.1
Host: api.cloudflare.com
User-Agent: terraform/1.3.4 terraform-plugin-sdk/2.10.1 terraform-provider-cloudflare/3.27.0
Authorization: <redacted>
Content-Type: application/json
Accept-Encoding: gzip

-----------------------------------------------------: timestamp=2022-11-09T10:52:20.595-0800
2022-11-09T10:52:20.821-0800 [DEBUG] provider.terraform-provider-cloudflare_v3.27.0: Cloudflare API Response Details:
---[ RESPONSE ]--------------------------------------
HTTP/2.0 200 OK
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Cf-Cache-Status: DYNAMIC
Cf-Ray: 7678beb4ffd29e53-SJC
Content-Type: application/json
Date: Wed, 09 Nov 2022 18:52:20 GMT
Expires: Sun, 25 Jan 1981 05:00:00 GMT
Pragma: no-cache
Server: cloudflare
Set-Cookie: __cflb=0H28vgHxwvgAQtjUGU4vq74ZFe3sNVUZLyHxL2GPLBP; SameSite=Lax; path=/; expires=Wed, 09-Nov-22 21:22:21 GMT; HttpOnly
Set-Cookie: __cfruid=96d5f6ba2bf53ab05d20d028e0a87c22960367ba-1668019940; path=/; domain=.api.cloudflare.com; HttpOnly; Secure; SameSite=None
Strict-Transport-Security: max-age=31536000
Vary: Accept-Encoding
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN

{
 "result": [
  {
   "id": "0rtt",
   "value": "off",
   "modified_on": null,
   "editable": true
  },
  {
   "id": "advanced_ddos",
   "value": "on",
   "modified_on": null,
   "editable": false
  },
  {
   "id": "always_online",
   "value": "off",
   "modified_on": null,
   "editable": true
  },
  {
   "id": "always_use_https",
   "value": "on",
   "modified_on": "2020-04-01T08:44:18.863413Z",
   "editable": true
  },
  {
   "id": "automatic_https_rewrites",
   "value": "on",
   "modified_on": "2022-02-24T16:56:43.442781Z",
   "editable": true
  },
  {
   "id": "brotli",
   "value": "on",
   "modified_on": "2022-02-07T14:48:53.530166Z",
   "editable": true
  },
  {
   "id": "browser_cache_ttl",
   "value": 0,
   "modified_on": "2022-04-20T15:40:25.373181Z",
   "editable": true
  },
  {
   "id": "browser_check",
   "value": "on",
   "modified_on": null,
   "editable": true
  },
  {
   "id": "cache_level",
   "value": "aggressive",
   "modified_on": "2022-02-24T16:56:40.815935Z",
   "editable": true
  },
  {
   "id": "challenge_ttl",
   "value": 1800,
   "modified_on": null,
   "editable": true
  },
  {
   "id": "ciphers",
   "value": [],
   "modified_on": null,
   "editable": true
  },
  {
   "id": "cname_flattening",
   "value": "flatten_at_root",
   "modified_on": null,
   "editable": true
  },
  {
   "id": "development_mode",
   "value": "off",
   "modified_on": "2022-04-20T15:41:20.782115Z",
   "time_remaining": 0,
   "editable": true
  },
  {
   "id": "early_hints",
   "value": "off",
   "modified_on": null,
   "editable": true
  },
  {
   "id": "edge_cache_ttl",
   "value": 7200,
   "modified_on": null,
   "editable": true
  },
  {
   "id": "email_obfuscation",
   "value": "on",
   "modified_on": "2022-02-24T16:56:42.592004Z",
   "editable": true
  },
  {
   "id": "filter_logs_to_cloudflare",
   "value": "off",
   "modified_on": null,
   "editable": true
  },
  {
   "id": "hotlink_protection",
   "modified_on": "2022-02-24T16:56:43.038349Z",
   "value": "off",
   "editable": true
  },
  {
   "id": "http2",
   "value": "on",
   "modified_on": null,
   "editable": true
  },
  {
   "id": "http3",
   "value": "off",
   "modified_on": null,
   "editable": true
  },
  {
   "id": "ip_geolocation",
   "value": "on",
   "modified_on": "2022-02-24T16:56:42.422461Z",
   "editable": true
  },
  {
   "id": "ipv6",
   "value": "on",
   "modified_on": "2020-03-27T11:54:25.045458Z",
   "editable": true
  },
  {
   "id": "log_to_cloudflare",
   "value": "on",
   "modified_on": null,
   "editable": true
  },
  {
   "id": "long_lived_grpc",
   "value": "off",
   "modified_on": null,
   "editable": true
  },
  {
   "id": "max_upload",
   "value": 100,
   "modified_on": null,
   "editable": true
  },
  {
   "id": "min_tls_version",
   "value": "1.2",
   "modified_on": null,
   "editable": true
  },
  {
   "id": "minify",
   "value": {
    "js": "on",
    "css": "on",
    "html": "on"
   },
   "modified_on": "2022-02-07T14:48:48.296213Z",
   "editable": true
  },
  {
   "id": "mirage",
   "value": "on",
   "modified_on": "2022-02-07T14:49:18.165748Z",
   "editable": true
  },
  {
   "id": "mobile_redirect",
   "value": {
    "status": "off",
    "mobile_subdomain": null,
    "strip_uri": false
   },
   "modified_on": null,
   "editable": true
  },
  {
   "id": "opportunistic_encryption",
   "value": "off",
   "modified_on": null,
   "editable": true
  },
  {
   "id": "opportunistic_onion",
   "value": "on",
   "modified_on": null,
   "editable": true
  },
  {
   "id": "orange_to_orange",
   "value": "off",
   "modified_on": null,
   "editable": true
  },
  {
   "id": "origin_error_page_pass_thru",
   "value": "off",
   "modified_on": null,
   "editable": true
  },
  {
   "id": "polish",
   "value": "lossless",
   "modified_on": "2022-02-07T14:48:41.511424Z",
   "editable": true
  },
  {
   "id": "pq_keyex",
   "value": "on",
   "modified_on": null,
   "editable": true
  },
  {
   "id": "prefetch_preload",
   "value": "off",
   "modified_on": null,
   "editable": true
  },
  {
   "id": "privacy_pass",
   "value": "on",
   "modified_on": null,
   "editable": true
  },
  {
   "id": "proxy_read_timeout",
   "value": "100",
   "modified_on": null,
   "editable": true
  },
  {
   "id": "pseudo_ipv4",
   "value": "off",
   "modified_on": null,
   "editable": true
  },
  {
   "id": "response_buffering",
   "value": "off",
   "modified_on": null,
   "editable": true
  },
  {
   "id": "rocket_loader",
   "value": "off",
   "modified_on": "2022-02-24T16:56:43.247554Z",
   "editable": true
  },
  {
   "id": "security_header",
   "modified_on": null,
   "value": {
    "strict_transport_security": {
     "enabled": false,
     "max_age": 0,
     "include_subdomains": false,
     "preload": false,
     "nosniff": false
    }
   },
   "editable": true
  },
  {
   "id": "security_level",
   "value": "medium",
   "modified_on": "2022-02-24T16:56:40.598497Z",
   "editable": true
  },
  {
   "id": "server_side_exclude",
   "value": "on",
   "modified_on": "2022-02-24T16:56:42.779748Z",
   "editable": true
  },
  {
   "id": "sort_query_string_for_cache",
   "value": "off",
   "modified_on": null,
   "editable": true
  },
  {
   "id": "ssl",
   "value": "flexible",
   "modified_on": "2022-10-06T17:34:35.063266Z",
   "certificate_status": "none",
   "validation_errors": [],
   "editable": true
  },
  {
   "id": "tls_1_2_only",
   "value": "off",
   "modified_on": null,
   "editable": true
  },
  {
   "id": "tls_1_3",
   "value": "on",
   "modified_on": null,
   "editable": true
  },
  {
   "id": "tls_client_auth",
   "value": "off",
   "modified_on": null,
   "editable": true
  },
  {
   "id": "true_client_ip_header",
   "value": "off",
   "modified_on": null,
   "editable": true
  },
  {
   "id": "visitor_ip",
   "value": "on",
   "modified_on": null,
   "editable": true
  },
  {
   "id": "waf",
   "value": "off",
   "modified_on": "2022-10-06T18:00:33.888448Z",
   "editable": true
  },
  {
   "id": "webp",
   "value": "on",
   "modified_on": "2022-02-07T14:48:42.841533Z",
   "editable": true
  },
  {
   "id": "websockets",
   "value": "on",
   "modified_on": "2022-02-24T16:56:42.192499Z",
   "editable": true
  }
 ],
 "success": true,
 "errors": [],
 "messages": []
}
-----------------------------------------------------: timestamp=2022-11-09T10:52:20.820-0800
2022-11-09T10:52:20.847-0800 [DEBUG] provider.terraform-provider-cloudflare_v3.27.0: Cloudflare API Request Details:
---[ REQUEST ]---------------------------------------
GET /client/v4/zones/8fbf130c80ad8631944d129efa4be525/settings/binary_ast HTTP/1.1
Host: api.cloudflare.com
User-Agent: terraform/1.3.4 terraform-plugin-sdk/2.10.1 terraform-provider-cloudflare/3.27.0
Authorization: <redacted>
Content-Type: application/json
Accept-Encoding: gzip

-----------------------------------------------------: timestamp=2022-11-09T10:52:20.846-0800
2022-11-09T10:52:21.250-0800 [DEBUG] provider.terraform-provider-cloudflare_v3.27.0: Cloudflare API Response Details:
---[ RESPONSE ]--------------------------------------
HTTP/2.0 200 OK
Cf-Cache-Status: DYNAMIC
Cf-Ray: 7678beb6adc4fa8a-SJC
Content-Type: application/json; charset=UTF-8
Date: Wed, 09 Nov 2022 18:52:21 GMT
Server: cloudflare
Set-Cookie: __cflb=0H28vgHxwvgAQtjUGU4vq74ZFe3sNVUZM8zdLq5swSu; SameSite=Lax; path=/; expires=Wed, 09-Nov-22 21:22:22 GMT; HttpOnly
Set-Cookie: __cfruid=21fb03ef16efe2ba0479a015946f2bfbc264bea4-1668019941; path=/; domain=.api.cloudflare.com; HttpOnly; Secure; SameSite=None
Vary: Accept-Encoding
X-Envoy-Upstream-Service-Time: 46

{
  "result": {
    "id": "binary_ast",
    "editable": true,
    "value": "off",
    "modified_on": null
  },
  "success": true,
  "errors": [],
  "messages": []
}

-----------------------------------------------------: timestamp=2022-11-09T10:52:21.250-0800
2022-11-09T10:52:21.250-0800 [DEBUG] provider.terraform-provider-cloudflare_v3.27.0: Cloudflare API Request Details:
---[ REQUEST ]---------------------------------------
GET /client/v4/zones/8fbf130c80ad8631944d129efa4be525/settings/h2_prioritization HTTP/1.1
Host: api.cloudflare.com
User-Agent: terraform/1.3.4 terraform-plugin-sdk/2.10.1 terraform-provider-cloudflare/3.27.0
Authorization: <redacted>
Content-Type: application/json
Accept-Encoding: gzip

-----------------------------------------------------: timestamp=2022-11-09T10:52:21.250-0800
2022-11-09T10:52:21.436-0800 [DEBUG] provider.terraform-provider-cloudflare_v3.27.0: Cloudflare API Response Details:
---[ RESPONSE ]--------------------------------------
HTTP/2.0 200 OK
Cf-Cache-Status: DYNAMIC
Cf-Ray: 7678beb91f549840-SJC
Content-Type: application/json; charset=UTF-8
Date: Wed, 09 Nov 2022 18:52:21 GMT
Server: cloudflare
Set-Cookie: __cflb=0H28vgHxwvgAQtjUGU4vq74ZFe3sNVUZM8zdLq5swSu; SameSite=Lax; path=/; expires=Wed, 09-Nov-22 21:22:22 GMT; HttpOnly
Set-Cookie: __cfruid=21fb03ef16efe2ba0479a015946f2bfbc264bea4-1668019941; path=/; domain=.api.cloudflare.com; HttpOnly; Secure; SameSite=None
Vary: Accept-Encoding
X-Envoy-Upstream-Service-Time: 2

{
  "result": {
    "id": "h2_prioritization",
    "editable": true,
    "value": "on",
    "modified_on": null
  },
  "success": true,
  "errors": [],
  "messages": []
}

-----------------------------------------------------: timestamp=2022-11-09T10:52:21.436-0800
2022-11-09T10:52:21.501-0800 [DEBUG] provider.terraform-provider-cloudflare_v3.27.0: Cloudflare API Request Details:
---[ REQUEST ]---------------------------------------
GET /client/v4/zones/8fbf130c80ad8631944d129efa4be525/settings/image_resizing HTTP/1.1
Host: api.cloudflare.com
User-Agent: terraform/1.3.4 terraform-plugin-sdk/2.10.1 terraform-provider-cloudflare/3.27.0
Authorization: <redacted>
Content-Type: application/json
Accept-Encoding: gzip

-----------------------------------------------------: timestamp=2022-11-09T10:52:21.501-0800
2022-11-09T10:52:21.732-0800 [DEBUG] provider.terraform-provider-cloudflare_v3.27.0: Cloudflare API Response Details:
---[ RESPONSE ]--------------------------------------
HTTP/2.0 200 OK
Cf-Cache-Status: DYNAMIC
Cf-Ray: 7678bebabf5e9834-SJC
Content-Type: application/json; charset=UTF-8
Date: Wed, 09 Nov 2022 18:52:21 GMT
Server: cloudflare
Set-Cookie: __cflb=0H28vgHxwvgAQtjUGU4vq74ZFe3sNVUZM8zdLq5swSu; SameSite=Lax; path=/; expires=Wed, 09-Nov-22 21:22:22 GMT; HttpOnly
Set-Cookie: __cfruid=21fb03ef16efe2ba0479a015946f2bfbc264bea4-1668019941; path=/; domain=.api.cloudflare.com; HttpOnly; Secure; SameSite=None
Vary: Accept-Encoding
X-Envoy-Upstream-Service-Time: 2

{
  "result": {
    "id": "image_resizing",
    "editable": true,
    "value": "open",
    "modified_on": null
  },
  "success": true,
  "errors": [],
  "messages": []
}

-----------------------------------------------------: timestamp=2022-11-09T10:52:21.732-0800
2022-11-09T10:52:21.752-0800 [DEBUG] provider.terraform-provider-cloudflare_v3.27.0: Cloudflare API Request Details:
---[ REQUEST ]---------------------------------------
GET /client/v4/zones/8fbf130c80ad8631944d129efa4be525/settings/early_hints HTTP/1.1
Host: api.cloudflare.com
User-Agent: terraform/1.3.4 terraform-plugin-sdk/2.10.1 terraform-provider-cloudflare/3.27.0
Authorization: <redacted>
Content-Type: application/json
Accept-Encoding: gzip

-----------------------------------------------------: timestamp=2022-11-09T10:52:21.751-0800
2022-11-09T10:52:22.102-0800 [DEBUG] provider.terraform-provider-cloudflare_v3.27.0: Cloudflare API Response Details:
---[ RESPONSE ]--------------------------------------
HTTP/2.0 200 OK
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Cf-Cache-Status: DYNAMIC
Cf-Ray: 7678bebc4b219465-SJC
Content-Type: application/json
Date: Wed, 09 Nov 2022 18:52:22 GMT
Expires: Sun, 25 Jan 1981 05:00:00 GMT
Pragma: no-cache
Server: cloudflare
Set-Cookie: __cflb=0H28vgHxwvgAQtjUGU4vq74ZFe3sNVUZM8zdLq5swSu; SameSite=Lax; path=/; expires=Wed, 09-Nov-22 21:22:23 GMT; HttpOnly
Set-Cookie: __cfruid=b7543d6d9efed408086d6e77763b75690c40076d-1668019942; path=/; domain=.api.cloudflare.com; HttpOnly; Secure; SameSite=None
Strict-Transport-Security: max-age=31536000
Vary: Accept-Encoding
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN

{
 "result": {
  "id": "early_hints",
  "value": "off",
  "modified_on": null,
  "editable": true
 },
 "success": true,
 "errors": [],
 "messages": []
}
-----------------------------------------------------: timestamp=2022-11-09T10:52:22.101-0800
2022-11-09T10:52:22.103-0800 [DEBUG] provider.terraform-provider-cloudflare_v3.27.0: Cloudflare API Request Details:
---[ REQUEST ]---------------------------------------
GET /client/v4/zones/8fbf130c80ad8631944d129efa4be525/settings/origin_max_http_version HTTP/1.1
Host: api.cloudflare.com
User-Agent: terraform/1.3.4 terraform-plugin-sdk/2.10.1 terraform-provider-cloudflare/3.27.0
Authorization: <redacted>
Content-Type: application/json
Accept-Encoding: gzip

-----------------------------------------------------: timestamp=2022-11-09T10:52:22.102-0800
2022-11-09T10:52:22.352-0800 [DEBUG] provider.terraform-provider-cloudflare_v3.27.0: Cloudflare API Response Details:
---[ RESPONSE ]--------------------------------------
HTTP/2.0 200 OK
Cf-Cache-Status: DYNAMIC
Cf-Ray: 7678bebe7ce39848-SJC
Content-Type: application/json; charset=UTF-8
Date: Wed, 09 Nov 2022 18:52:22 GMT
Server: cloudflare
Set-Cookie: __cflb=0H28vgHxwvgAQtjUGU4vq74ZFe3sNVUZMJhJMduNYiR; SameSite=Lax; path=/; expires=Wed, 09-Nov-22 21:22:23 GMT; HttpOnly
Set-Cookie: __cfruid=b7543d6d9efed408086d6e77763b75690c40076d-1668019942; path=/; domain=.api.cloudflare.com; HttpOnly; Secure; SameSite=None
Vary: Accept-Encoding
X-Envoy-Upstream-Service-Time: 55

{
  "result": {
    "id": "origin_max_http_version",
    "value": "1"
  },
  "success": true,
  "errors": [],
  "messages": []
}

-----------------------------------------------------: timestamp=2022-11-09T10:52:22.352-0800
2022-11-09T10:52:22.356-0800 [DEBUG] provider.terraform-provider-cloudflare_v3.27.0: Read CloudflareZone Settings: &cloudflare.ZoneSettingResponse{Response:cloudflare.Response{Success:true, Errors:[]cloudflare.ResponseInfo{}, Messages:[]cloudflare.ResponseInfo{}}, Result:[]cloudflare.ZoneSetting{cloudflare.ZoneSetting{ID:"0rtt", Editable:true, ModifiedOn:"", Value:"off", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"advanced_ddos", Editable:false, ModifiedOn:"", Value:"on", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"always_online", Editable:true, ModifiedOn:"", Value:"off", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"always_use_https", Editable:true, ModifiedOn:"2020-04-01T08:44:18.863413Z", Value:"on", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"automatic_https_rewrites", Editable:true, ModifiedOn:"2022-02-24T16:56:43.442781Z", Value:"on", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"brotli", Editable:true, ModifiedOn:"2022-02-07T14:48:53.530166Z", Value:"on", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"browser_cache_ttl", Editable:true, ModifiedOn:"2022-04-20T15:40:25.373181Z", Value:0, TimeRemaining:0}, cloudflare.ZoneSetting{ID:"browser_check", Editable:true, ModifiedOn:"", Value:"on", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"cache_level", Editable:true, ModifiedOn:"2022-02-24T16:56:40.815935Z", Value:"aggressive", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"challenge_ttl", Editable:true, ModifiedOn:"", Value:1800, TimeRemaining:0}, cloudflare.ZoneSetting{ID:"ciphers", Editable:true, ModifiedOn:"", Value:[]interface {}{}, TimeRemaining:0}, cloudflare.ZoneSetting{ID:"cname_flattening", Editable:true, ModifiedOn:"", Value:"flatten_at_root", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"development_mode", Editable:true, ModifiedOn:"2022-04-20T15:41:20.782115Z", Value:"off", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"early_hints", Editable:true, ModifiedOn:"", Value:"off", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"edge_cache_ttl", Editable:true, ModifiedOn:"", Value:7200, TimeRemaining:0}, cloudflare.ZoneSetting{ID:"email_obfuscation", Editable:true, ModifiedOn:"2022-02-24T16:56:42.592004Z", Value:"on", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"filter_logs_to_cloudflare", Editable:true, ModifiedOn:"", Value:"off", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"hotlink_protection", Editable:true, ModifiedOn:"2022-02-24T16:56:43.038349Z", Value:"off", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"http2", Editable:true, ModifiedOn:"", Value:"on", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"http3", Editable:true, ModifiedOn:"", Value:"off", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"ip_geolocation", Editable:true, ModifiedOn:"2022-02-24T16:56:42.422461Z", Value:"on", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"ipv6", Editable:true, ModifiedOn:"2020-03-27T11:54:25.045458Z", Value:"on", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"log_to_cloudflare", Editable:true, ModifiedOn:"", Value:"on", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"long_lived_grpc", Editable:true, ModifiedOn:"", Value:"off", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"max_upload", Editable:true, ModifiedOn:"", Value:100, TimeRemaining:0}, cloudflare.ZoneSetting{ID:"min_tls_version", Editable:true, ModifiedOn:"", Value:"1.2", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"minify", Editable:true, ModifiedOn:"2022-02-07T14:48:48.296213Z", Value:map[string]interface {}{"css":"on", "html":"on", "js":"on"}, TimeRemaining:0}, cloudflare.ZoneSetting{ID:"mirage", Editable:true, ModifiedOn:"2022-02-07T14:49:18.165748Z", Value:"on", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"mobile_redirect", Editable:true, ModifiedOn:"", Value:map[string]interface {}{"mobile_subdomain":interface {}(nil), "status":"off", "strip_uri":false}, TimeRemaining:0}, cloudflare.ZoneSetting{ID:"opportunistic_encryption", Editable:true, ModifiedOn:"", Value:"off", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"opportunistic_onion", Editable:true, ModifiedOn:"", Value:"on", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"orange_to_orange", Editable:true, ModifiedOn:"", Value:"off", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"origin_error_page_pass_thru", Editable:true, ModifiedOn:"", Value:"off", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"polish", Editable:true, ModifiedOn:"2022-02-07T14:48:41.511424Z", Value:"lossless", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"pq_keyex", Editable:true, ModifiedOn:"", Value:"on", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"prefetch_preload", Editable:true, ModifiedOn:"", Value:"off", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"privacy_pass", Editable:true, ModifiedOn:"", Value:"on", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"proxy_read_timeout", Editable:true, ModifiedOn:"", Value:"100", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"pseudo_ipv4", Editable:true, ModifiedOn:"", Value:"off", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"response_buffering", Editable:true, ModifiedOn:"", Value:"off", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"rocket_loader", Editable:true, ModifiedOn:"2022-02-24T16:56:43.247554Z", Value:"off", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"security_header", Editable:true, ModifiedOn:"", Value:map[string]interface {}{"strict_transport_security":map[string]interface {}{"enabled":false, "include_subdomains":false, "max_age":0, "nosniff":false, "preload":false}}, TimeRemaining:0}, cloudflare.ZoneSetting{ID:"security_level", Editable:true, ModifiedOn:"2022-02-24T16:56:40.598497Z", Value:"medium", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"server_side_exclude", Editable:true, ModifiedOn:"2022-02-24T16:56:42.779748Z", Value:"on", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"sort_query_string_for_cache", Editable:true, ModifiedOn:"", Value:"off", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"ssl", Editable:true, ModifiedOn:"2022-10-06T17:34:35.063266Z", Value:"flexible", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"tls_1_2_only", Editable:true, ModifiedOn:"", Value:"off", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"tls_1_3", Editable:true, ModifiedOn:"", Value:"on", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"tls_client_auth", Editable:true, ModifiedOn:"", Value:"off", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"true_client_ip_header", Editable:true, ModifiedOn:"", Value:"off", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"visitor_ip", Editable:true, ModifiedOn:"", Value:"on", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"waf", Editable:true, ModifiedOn:"2022-10-06T18:00:33.888448Z", Value:"off", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"webp", Editable:true, ModifiedOn:"2022-02-07T14:48:42.841533Z", Value:"on", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"websockets", Editable:true, ModifiedOn:"2022-02-24T16:56:42.192499Z", Value:"on", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"binary_ast", Editable:true, ModifiedOn:"", Value:"off", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"h2_prioritization", Editable:true, ModifiedOn:"", Value:"on", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"image_resizing", Editable:true, ModifiedOn:"", Value:"open", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"early_hints", Editable:true, ModifiedOn:"", Value:"off", TimeRemaining:0}, cloudflare.ZoneSetting{ID:"origin_max_http_version", Editable:false, ModifiedOn:"", Value:"1", TimeRemaining:0}}}: @module=cloudflare tf_provider_addr=registry.terraform.io/cloudflare/cloudflare tf_resource_type=cloudflare_zone_settings_override tf_rpc=ReadResource @caller=github.com/cloudflare/terraform-provider-cloudflare/internal/provider/resource_cloudflare_zone_settings_override.go:142 tf_req_id=fd316674-fc6e-0e48-cf17-94379c71e295 timestamp=2022-11-09T10:52:22.352-0800
2022-11-09T10:52:22.356-0800 [WARN]  provider.terraform-provider-cloudflare_v3.27.0: Value not in schema returned from API zone settings (is it new?) - "advanced_ddos" : "on": timestamp=2022-11-09T10:52:22.353-0800
2022-11-09T10:52:22.356-0800 [WARN]  provider.terraform-provider-cloudflare_v3.27.0: Value not in schema returned from API zone settings (is it new?) - "edge_cache_ttl" : 7200: timestamp=2022-11-09T10:52:22.353-0800
2022-11-09T10:52:22.356-0800 [WARN]  provider.terraform-provider-cloudflare_v3.27.0: Value not in schema returned from API zone settings (is it new?) - "long_lived_grpc" : "off": timestamp=2022-11-09T10:52:22.353-0800
2022-11-09T10:52:22.356-0800 [WARN]  provider.terraform-provider-cloudflare_v3.27.0: Value not in schema returned from API zone settings (is it new?) - "pq_keyex" : "on": timestamp=2022-11-09T10:52:22.353-0800
2022-11-09T10:52:22.357-0800 [DEBUG] provider.terraform-provider-cloudflare_v3.27.0: Flattened Cloudflare Zone Settings: map[string]interface {}{"always_online":"off", "always_use_https":"on", "automatic_https_rewrites":"on", "binary_ast":"off", "brotli":"on", "browser_cache_ttl":0, "browser_check":"on", "cache_level":"aggressive", "challenge_ttl":1800, "ciphers":[]interface {}{}, "cname_flattening":"flatten_at_root", "development_mode":"off", "early_hints":"off", "email_obfuscation":"on", "filter_logs_to_cloudflare":"off", "h2_prioritization":"on", "hotlink_protection":"off", "http2":"on", "http3":"off", "image_resizing":"open", "ip_geolocation":"on", "ipv6":"on", "log_to_cloudflare":"on", "max_upload":100, "min_tls_version":"1.2", "minify":[]interface {}{map[string]interface {}{"css":"on", "html":"on", "js":"on"}}, "mirage":"on", "mobile_redirect":[]interface {}{map[string]interface {}{"mobile_subdomain":interface {}(nil), "status":"off", "strip_uri":false}}, "opportunistic_encryption":"off", "opportunistic_onion":"on", "orange_to_orange":"off", "origin_error_page_pass_thru":"off", "origin_max_http_version":"1", "polish":"lossless", "prefetch_preload":"off", "privacy_pass":"on", "proxy_read_timeout":"100", "pseudo_ipv4":"off", "response_buffering":"off", "rocket_loader":"off", "security_header":[]interface {}{map[string]interface {}{"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":"flexible", "tls_1_2_only":"off", "tls_1_3":"on", "tls_client_auth":"off", "true_client_ip_header":"off", "visitor_ip":"on", "waf":"off", "webp":"on", "websockets":"on", "zero_rtt":"off"}: tf_resource_type=cloudflare_zone_settings_override @caller=github.com/cloudflare/terraform-provider-cloudflare/internal/provider/resource_cloudflare_zone_settings_override.go:195 @module=cloudflare tf_provider_addr=registry.terraform.io/cloudflare/cloudflare tf_req_id=fd316674-fc6e-0e48-cf17-94379c71e295 tf_rpc=ReadResource timestamp=2022-11-09T10:52:22.354-0800
2022-11-09T10:52:22.358-0800 [DEBUG] provider.terraform-provider-cloudflare_v3.27.0: Flattened Cloudflare Read Only Zone Settings: []string{"advanced_ddos", "origin_max_http_version"}: tf_resource_type=cloudflare_zone_settings_override tf_rpc=ReadResource tf_provider_addr=registry.terraform.io/cloudflare/cloudflare tf_req_id=fd316674-fc6e-0e48-cf17-94379c71e295 @module=cloudflare @caller=github.com/cloudflare/terraform-provider-cloudflare/internal/provider/resource_cloudflare_zone_settings_override.go:216 timestamp=2022-11-09T10:52:22.355-0800
2022-11-09T10:52:22.367-0800 [WARN]  Provider "registry.terraform.io/cloudflare/cloudflare" produced an invalid plan for cloudflare_zone_settings_override.<redacted>, but we are tolerating it because it is using the legacy plugin SDK.
    The following problems may be the cause of any confusing errors from downstream operations:
      - .settings[0].mobile_redirect: attribute representing nested block must not be unknown itself; set nested attribute values to unknown instead
2022-11-09T10:52:22.369-0800 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF"
2022-11-09T10:52:22.370-0800 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/3.27.0/darwin_arm64/terraform-provider-cloudflare_v3.27.0 pid=64195
2022-11-09T10:52:22.370-0800 [DEBUG] provider: plugin exited
2022-11-09T10:52:22.371-0800 [DEBUG] building apply graph to check for errors
2022-11-09T10:52:22.371-0800 [DEBUG] ProviderTransformer: "cloudflare_zone_settings_override.<redacted> (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/cloudflare/cloudflare"]
2022-11-09T10:52:22.371-0800 [DEBUG] ProviderTransformer: "cloudflare_zone_settings_override.<redacted>" (*terraform.NodeApplyableResourceInstance) needs provider["registry.terraform.io/cloudflare/cloudflare"]
2022-11-09T10:52:22.371-0800 [DEBUG] ProviderTransformer: "cloudflare_zone_settings_override.<redacted> (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider["registry.terraform.io/cloudflare/cloudflare"]
2022-11-09T10:52:22.371-0800 [DEBUG] ReferenceTransformer: "cloudflare_zone_settings_override.<redacted> (expand)" references: []
2022-11-09T10:52:22.371-0800 [DEBUG] ReferenceTransformer: "local.zone_id (expand)" references: []
2022-11-09T10:52:22.371-0800 [DEBUG] ReferenceTransformer: "cloudflare_zone_settings_override.<redacted>" references: [local.zone_id (expand)]
2022-11-09T10:52:22.371-0800 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/cloudflare/cloudflare\"]" references: []

Terraform used the selected providers to generate the following execution plan. Resource actions are indicated with the following symbols:
-/+ destroy and then create replacement

Terraform will perform the following actions:

  # cloudflare_zone_settings_override.<redacted> is tainted, so must be replaced
-/+ resource "cloudflare_zone_settings_override" "<redacted>" {
      ~ id                       = "8fbf130c80ad8631944d129efa4be525" -> (known after apply)
      + initial_settings         = (known after apply)
      + initial_settings_read_at = (known after apply)
      ~ readonly_settings        = [
          - "advanced_ddos",
          - "origin_max_http_version",
        ] -> (known after apply)
      ~ zone_status              = "active" -> (known after apply)
      ~ zone_type                = "partial" -> (known after apply)
        # (1 unchanged attribute hidden)

      ~ settings {
          ~ tls_1_2_only                = "off" -> (known after apply)
          + universal_ssl               = (known after apply)
            # (50 unchanged attributes hidden)

          ~ mobile_redirect {
              + mobile_subdomain = (known after apply)
              ~ status           = "off" -> (known after apply)
              ~ strip_uri        = false -> (known after apply)
            }

            # (2 unchanged blocks hidden)
        }
    }

Plan: 1 to add, 0 to change, 1 to destroy.
2022-11-09T10:52:22.380-0800 [DEBUG] command: asking for input: "\nDo you want to perform these actions?"

Do you want to perform these actions?
  Terraform will perform the actions described above.
  Only 'yes' will be accepted to approve.

  Enter a value: yes

2022-11-09T10:52:27.132-0800 [INFO]  backend/local: apply calling Apply
2022-11-09T10:52:27.132-0800 [DEBUG] Building and walking apply graph for NormalMode plan
2022-11-09T10:52:27.133-0800 [DEBUG] ProviderTransformer: "cloudflare_zone_settings_override.<redacted> (expand)" (*terraform.nodeExpandApplyableResource) needs provider["registry.terraform.io/cloudflare/cloudflare"]
2022-11-09T10:52:27.133-0800 [DEBUG] ProviderTransformer: "cloudflare_zone_settings_override.<redacted>" (*terraform.NodeApplyableResourceInstance) needs provider["registry.terraform.io/cloudflare/cloudflare"]
2022-11-09T10:52:27.133-0800 [DEBUG] ProviderTransformer: "cloudflare_zone_settings_override.<redacted> (destroy)" (*terraform.NodeDestroyResourceInstance) needs provider["registry.terraform.io/cloudflare/cloudflare"]
2022-11-09T10:52:27.133-0800 [DEBUG] ReferenceTransformer: "cloudflare_zone_settings_override.<redacted> (expand)" references: []
2022-11-09T10:52:27.133-0800 [DEBUG] ReferenceTransformer: "local.zone_id (expand)" references: []
2022-11-09T10:52:27.133-0800 [DEBUG] ReferenceTransformer: "cloudflare_zone_settings_override.<redacted>" references: [local.zone_id (expand)]
2022-11-09T10:52:27.133-0800 [DEBUG] ReferenceTransformer: "provider[\"registry.terraform.io/cloudflare/cloudflare\"]" references: []
2022-11-09T10:52:27.134-0800 [DEBUG] Starting graph walk: walkApply
2022-11-09T10:52:27.134-0800 [DEBUG] created provider logger: level=debug
2022-11-09T10:52:27.135-0800 [INFO]  provider: configuring client automatic mTLS
2022-11-09T10:52:27.143-0800 [DEBUG] provider: starting plugin: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/3.27.0/darwin_arm64/terraform-provider-cloudflare_v3.27.0 args=[.terraform/providers/registry.terraform.io/cloudflare/cloudflare/3.27.0/darwin_arm64/terraform-provider-cloudflare_v3.27.0]
2022-11-09T10:52:27.147-0800 [DEBUG] provider: plugin started: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/3.27.0/darwin_arm64/terraform-provider-cloudflare_v3.27.0 pid=64196
2022-11-09T10:52:27.147-0800 [DEBUG] provider: waiting for RPC address: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/3.27.0/darwin_arm64/terraform-provider-cloudflare_v3.27.0
2022-11-09T10:52:27.165-0800 [INFO]  provider.terraform-provider-cloudflare_v3.27.0: configuring server automatic mTLS: timestamp=2022-11-09T10:52:27.165-0800
2022-11-09T10:52:27.180-0800 [DEBUG] provider: using plugin: version=5
2022-11-09T10:52:27.180-0800 [DEBUG] provider.terraform-provider-cloudflare_v3.27.0: plugin address: address=/var/folders/r0/cf91s0kd5zq1bx7fknd4nq100000gq/T/plugin1293603222 network=unix timestamp=2022-11-09T10:52:27.180-0800
2022-11-09T10:52:27.197-0800 [WARN]  ValidateProviderConfig from "provider[\"registry.terraform.io/cloudflare/cloudflare\"]" changed the config value, but that value is unused
cloudflare_zone_settings_override.<redacted>: Destroying... [id=8fbf130c80ad8631944d129efa4be525]
2022-11-09T10:52:27.199-0800 [INFO]  Starting apply for cloudflare_zone_settings_override.<redacted>
2022-11-09T10:52:27.199-0800 [DEBUG] cloudflare_zone_settings_override.<redacted>: applying the planned Delete change
2022-11-09T10:52:27.201-0800 [ERROR] provider.terraform-provider-cloudflare_v3.27.0: Response contains error diagnostic: @caller=github.com/hashicorp/terraform-plugin-go@v0.14.0/tfprotov5/internal/diag/diagnostics.go:55 diagnostic_severity=ERROR tf_provider_addr=registry.terraform.io/cloudflare/cloudflare tf_req_id=7e56d00a-43e7-7a79-d51a-1ef4de20acc4 tf_resource_type=cloudflare_zone_settings_override tf_rpc=ApplyResourceChange @module=sdk.proto diagnostic_detail= diagnostic_summary="invalid zone setting "origin_max_http_version" (value: ) found - cannot be set as it is read only" tf_proto_version=5.3 timestamp=2022-11-09T10:52:27.201-0800
2022-11-09T10:52:27.201-0800 [ERROR] vertex "cloudflare_zone_settings_override.<redacted> (destroy)" error: invalid zone setting "origin_max_http_version" (value: ) found - cannot be set as it is read only
╷
│ Error: invalid zone setting "origin_max_http_version" (value: ) found - cannot be set as it is read only
│
│
╵
2022-11-09T10:52:27.202-0800 [DEBUG] [aws-sdk-go] DEBUG: Request dynamodb/GetItem Details:
---[ REQUEST POST-SIGN ]-----------------------------
POST / HTTP/1.1
Host: dynamodb.eu-west-1.amazonaws.com
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/1.3.4 aws-sdk-go/1.42.35 (go1.19.3; darwin; arm64)
Content-Length: 176
Accept-Encoding: identity
Authorization: <redacted>
Content-Type: application/x-amz-json-1.0
X-Amz-Date: 20221109T185227Z
X-Amz-Security-Token: <redacted>
X-Amz-Target: DynamoDB_20120810.GetItem

{"ConsistentRead":true,"Key":{"LockID":{"S":"<redacted>/global"}},"ProjectionExpression":"LockID, Info","TableName":"<redacted>"}
-----------------------------------------------------
Releasing state lock. This may take a few moments...
2022-11-09T10:52:27.848-0800 [DEBUG] [aws-sdk-go] DEBUG: Response dynamodb/GetItem Details:
---[ RESPONSE ]--------------------------------------
HTTP/1.1 200 OK
Connection: close
Content-Length: 378
Content-Type: application/x-amz-json-1.0
Date: Wed, 09 Nov 2022 18:52:27 GMT
Server: Server
X-Amz-Crc32: 3374529072
X-Amzn-Requestid: KDRINPSN34J6H8RL92VK2HPAJFVV4KQNSO5AEMVJF66Q9ASUAAJG

-----------------------------------------------------
2022-11-09T10:52:27.848-0800 [DEBUG] [aws-sdk-go] {"Item":{"LockID":{"S":"<redacted>/global"},"Info":{"S":"{\"ID\":\"2c024405-f0b8-2c77-9090-9626d1eaa463\",\"Operation\":\"OperationTypeApply\",\"Info\":\"\",\"Who\":\"<redacted>\",\"Version\":\"1.3.4\",\"Created\":\"2022-11-09T18:52:18.122676Z\",\"Path\":\"<redacted>/global\"}"}}}
2022-11-09T10:52:27.849-0800 [DEBUG] [aws-sdk-go] DEBUG: Request dynamodb/DeleteItem Details:
---[ REQUEST POST-SIGN ]-----------------------------
POST / HTTP/1.1
Host: dynamodb.eu-west-1.amazonaws.com
User-Agent: APN/1.0 HashiCorp/1.0 Terraform/1.3.4 aws-sdk-go/1.42.35 (go1.19.3; darwin; arm64)
Content-Length: 116
Accept-Encoding: identity
Authorization: <redacted>
Content-Type: application/x-amz-json-1.0
X-Amz-Date: 20221109T185227Z
X-Amz-Security-Token: <redacted>
X-Amz-Target: DynamoDB_20120810.DeleteItem

{"Key":{"LockID":{"S":"<redacted>/global"}},"TableName":"<redacted>"}
-----------------------------------------------------
2022-11-09T10:52:28.479-0800 [DEBUG] [aws-sdk-go] DEBUG: Response dynamodb/DeleteItem Details:
---[ RESPONSE ]--------------------------------------
HTTP/1.1 200 OK
Connection: close
Content-Length: 2
Content-Type: application/x-amz-json-1.0
Date: Wed, 09 Nov 2022 18:52:28 GMT
Server: Server
X-Amz-Crc32: 2745614147
X-Amzn-Requestid: N50KUPA0D7VMVOJ7KTKITQS0V7VV4KQNSO5AEMVJF66Q9ASUAAJG

-----------------------------------------------------
2022-11-09T10:52:28.479-0800 [DEBUG] [aws-sdk-go] {}
2022-11-09T10:52:28.485-0800 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc = error reading from server: EOF"
2022-11-09T10:52:28.486-0800 [DEBUG] provider: plugin process exited: path=.terraform/providers/registry.terraform.io/cloudflare/cloudflare/3.27.0/darwin_arm64/terraform-provider-cloudflare_v3.27.0 pid=64196
2022-11-09T10:52:28.486-0800 [DEBUG] provider: plugin exited
jtthackery commented 1 year ago

@reedloden (apologies if you aren't the right person to tag) Can this issue be re-triaged now that the additional information has been provided? Thanks!

reedloden commented 1 year ago

@reedloden (apologies if you aren't the right person to tag) Can this issue be re-triaged now that the additional information has been provided? Thanks!

Can you put it in a gist, and then I can update the summary, which should kick off the bot to re-label it.

rdesai3 commented 1 year ago

@jacobbednarz could this be prioritized? We are facing the same issue

rpsadarangani commented 1 year ago

@jacobbednarz any update on this I am also currently block on this ?

jacobbednarz commented 1 year ago

@rdesai3 @rpsadarangani please don't ping maintainers to check/ask for the status of issues. if you have an account team, you can follow up with them to check the internal status. otherwise, you'll need to wait for updates on the GitHub issue which get posted when there is anything to share.

this is an internal service issue so the team will take a look at it once it is prioritised in their backlog.

rpsadarangani commented 1 year ago

@jacobbednarz sure, I have already raised it with the account team. Thanks for the help.

jacobbednarz commented 1 year ago

the service team released a fixed for this early this morning.

ratesangelo commented 1 week ago

Where can we find the schema details for each setting in the override block? Additionally, where can we locate these settings in the user interface?