diff --git a/docs/data-sources/lb_acls.md b/docs/data-sources/lb_acls.md index e27a0dbad3..935237a4ec 100644 --- a/docs/data-sources/lb_acls.md +++ b/docs/data-sources/lb_acls.md @@ -54,4 +54,5 @@ In addition to all arguments above, the following attributes are exported: - `http_filter` - The HTTP filter to match. - `http_filter_value` - The possible values to match for a given HTTP filter. - `http_filter_option` - A list of possible values for the HTTP filter based on the HTTP header. - - `invert` - The condition will be of type "unless" if invert is set to `true` + - `invert` - The condition will be of type "unless" if invert is set to `true` + - `ips_edge_services` - Defines whether Edge Services IPs should be matched. diff --git a/docs/resources/lb_acl.md b/docs/resources/lb_acl.md index acc0d78d09..16f22d3c57 100644 --- a/docs/resources/lb_acl.md +++ b/docs/resources/lb_acl.md @@ -53,9 +53,11 @@ The following arguments are supported: - `code` - (Optional) The HTTP redirect code to use. Valid values are `301`, `302`, `303`, `307` and `308`. -- `match` - (Required) The ACL match rule. At least `ip_subnet` or `http_filter` and `http_filter_value` are required. +- `match` - (Required) The ACL match rule. At least `ip_subnet` or `ips_edge_services` or `http_filter` and `http_filter_value` are required. - - `ip_subnet` - (Optional) A list of IPs, or CIDR v4/v6 addresses of the session client, to match. + - `ip_subnet` - (Optional) A list of IPs, or CIDR v4/v6 addresses of the session client, to match. Only one of `ip_subnet` and `ips_edge_services` should be specified. + + - `ips_edge_services` - (Optional) Defines whether Edge Services IPs should be matched. Only one of `ip_subnet` and `ips_edge_services` should be specified. - `http_filter` - (Optional) The HTTP filter to match. This filter is supported only if your backend protocol has an HTTP forward protocol. It extracts the request's URL path, which starts at the first slash and ends before the question mark (without the host part). diff --git a/docs/resources/lb_frontend.md b/docs/resources/lb_frontend.md index 0f90eaec0e..d34ec4838e 100644 --- a/docs/resources/lb_frontend.md +++ b/docs/resources/lb_frontend.md @@ -191,9 +191,11 @@ The following arguments are supported: - `code` - (Optional) The HTTP redirect code to use. Valid values are `301`, `302`, `303`, `307` and `308`. -- `match` - (Required) The ACL match rule. At least `ip_subnet` or `http_filter` and `http_filter_value` are required. +- `match` - (Required) The ACL match rule. At least `ip_subnet` or `ips_edge_services` or `http_filter` and `http_filter_value` are required. - - `ip_subnet` - (Optional) A list of IPs, or CIDR v4/v6 addresses of the session client, to match. + - `ip_subnet` - (Optional) A list of IPs, or CIDR v4/v6 addresses of the session client, to match. Only one of `ip_subnet` and `ips_edge_services` should be specified. + + - `ips_edge_services` - (Optional) Defines whether Edge Services IPs should be matched. Only one of `ip_subnet` and `ips_edge_services` should be specified. - `http_filter` - (Optional) The HTTP filter to match. This filter is supported only if your backend protocol has an HTTP forward protocol. It extracts the request's URL path, which starts at the first slash and ends before the question mark (without the host part). @@ -205,7 +207,7 @@ The following arguments are supported: - `http_filter_option` - (Optional) If you have `http_filter` at `http_header_match`, you can use this field to filter on the HTTP header's value. - `invert` - (Optional) If set to `true`, the condition will be of type "unless". - + - `external_acls` - (Defaults to `false`) A boolean to specify whether to use [lb_acl](../resources/lb_acl.md). If `external_acls` is set to `true`, `acl` can not be set directly in the Load Balancer frontend. diff --git a/internal/services/lb/acl.go b/internal/services/lb/acl.go index 014436e0ff..062fc01220 100644 --- a/internal/services/lb/acl.go +++ b/internal/services/lb/acl.go @@ -136,6 +136,11 @@ func ResourceACL() *schema.Resource { Optional: true, Description: `If set to true, the condition will be of type "unless"`, }, + "ips_edge_services": { + Type: schema.TypeBool, + Optional: true, + Description: `Defines whether Edge Services IPs should be matched`, + }, }, }, }, @@ -169,7 +174,7 @@ func resourceLbACLCreate(ctx context.Context, d *schema.ResourceData, m any) dia FrontendID: frontID, Name: d.Get("name").(string), Action: expandLbACLAction(d.Get("action")), - Match: expandLbACLMatch(d.Get("match")), + Match: expandLbACLMatch(d, d.Get("match"), 0), Index: int32(d.Get("index").(int)), Description: d.Get("description").(string), } @@ -231,7 +236,7 @@ func resourceLbACLUpdate(ctx context.Context, d *schema.ResourceData, m any) dia Name: d.Get("name").(string), Action: expandLbACLAction(d.Get("action")), Index: int32(d.Get("index").(int)), - Match: expandLbACLMatch(d.Get("match")), + Match: expandLbACLMatch(d, d.Get("match"), 0), Description: types.ExpandUpdatedStringPtr(d.Get("description")), } diff --git a/internal/services/lb/acl_test.go b/internal/services/lb/acl_test.go index badfae18a3..656147373c 100644 --- a/internal/services/lb/acl_test.go +++ b/internal/services/lb/acl_test.go @@ -54,7 +54,7 @@ func TestAccAcl_Basic(t *testing.T) { ip_subnet = ["192.168.0.1", "192.168.0.2", "192.168.10.0/24"] http_filter = "acl_http_filter_none" http_filter_value = [] - invert = "true" + invert = true } } `, @@ -127,6 +127,114 @@ func TestAccAcl_Basic(t *testing.T) { resource.TestCheckResourceAttr("scaleway_lb_acl.acl01", "match.0.http_filter", "acl_http_filter_none"), resource.TestCheckResourceAttr("scaleway_lb_acl.acl01", "match.0.http_filter_value.#", "0"), resource.TestCheckResourceAttr("scaleway_lb_acl.acl01", "match.0.invert", "false"), + resource.TestCheckResourceAttr("scaleway_lb_acl.acl01", "match.0.ips_edge_services", "false"), + ), + }, + { + Config: ` + resource scaleway_lb_ip ip01 {} + resource scaleway_lb lb01 { + ip_id = scaleway_lb_ip.ip01.id + name = "test-lb-acl" + type = "lb-s" + } + resource scaleway_lb_backend bkd01 { + lb_id = scaleway_lb.lb01.id + forward_protocol = "http" + forward_port = 80 + proxy_protocol = "none" + } + resource scaleway_lb_frontend frt01 { + lb_id = scaleway_lb.lb01.id + backend_id = scaleway_lb_backend.bkd01.id + name = "tf-test" + inbound_port = 80 + timeout_client = "30s" + external_acls = true + } + resource scaleway_lb_acl acl01 { + frontend_id = scaleway_lb_frontend.frt01.id + name = "updated-test-acl-basic" + description = "updated description" + index = 3 + action { + type = "deny" + } + match { + http_filter = "acl_http_filter_none" + http_filter_value = [] + ips_edge_services = true + } + } + `, + Check: resource.ComposeTestCheckFunc( + isACLPresent(tt, "scaleway_lb_acl.acl01"), + resource.TestCheckResourceAttrPair( + "scaleway_lb_acl.acl01", "frontend_id", + "scaleway_lb_frontend.frt01", "id"), + resource.TestCheckResourceAttr("scaleway_lb_acl.acl01", "name", "updated-test-acl-basic"), + resource.TestCheckResourceAttr("scaleway_lb_acl.acl01", "description", "updated description"), + resource.TestCheckResourceAttr("scaleway_lb_acl.acl01", "index", "3"), + resource.TestCheckResourceAttr("scaleway_lb_acl.acl01", "action.0.type", "deny"), + resource.TestCheckResourceAttr("scaleway_lb_acl.acl01", "match.0.ip_subnet.#", "1"), + resource.TestCheckResourceAttr("scaleway_lb_acl.acl01", "match.0.ip_subnet.0", "0.0.0.0/0"), + resource.TestCheckResourceAttr("scaleway_lb_acl.acl01", "match.0.http_filter", "acl_http_filter_none"), + resource.TestCheckResourceAttr("scaleway_lb_acl.acl01", "match.0.http_filter_value.#", "0"), + resource.TestCheckResourceAttr("scaleway_lb_acl.acl01", "match.0.invert", "false"), + resource.TestCheckResourceAttr("scaleway_lb_acl.acl01", "match.0.ips_edge_services", "true"), + ), + }, + { + Config: ` + resource scaleway_lb_ip ip01 {} + resource scaleway_lb lb01 { + ip_id = scaleway_lb_ip.ip01.id + name = "test-lb-acl" + type = "lb-s" + } + resource scaleway_lb_backend bkd01 { + lb_id = scaleway_lb.lb01.id + forward_protocol = "http" + forward_port = 80 + proxy_protocol = "none" + } + resource scaleway_lb_frontend frt01 { + lb_id = scaleway_lb.lb01.id + backend_id = scaleway_lb_backend.bkd01.id + name = "tf-test" + inbound_port = 80 + timeout_client = "30s" + external_acls = true + } + resource scaleway_lb_acl acl01 { + frontend_id = scaleway_lb_frontend.frt01.id + name = "updated-test-acl-basic" + description = "updated description" + index = 3 + action { + type = "deny" + } + match { + http_filter = "acl_http_filter_none" + http_filter_value = [] + } + } + `, + Check: resource.ComposeTestCheckFunc( + isACLPresent(tt, "scaleway_lb_acl.acl01"), + resource.TestCheckResourceAttrPair( + "scaleway_lb_acl.acl01", "frontend_id", + "scaleway_lb_frontend.frt01", "id"), + resource.TestCheckResourceAttr("scaleway_lb_acl.acl01", "name", "updated-test-acl-basic"), + resource.TestCheckResourceAttr("scaleway_lb_acl.acl01", "description", "updated description"), + resource.TestCheckResourceAttr("scaleway_lb_acl.acl01", "index", "3"), + resource.TestCheckResourceAttr("scaleway_lb_acl.acl01", "action.0.type", "deny"), + resource.TestCheckResourceAttr("scaleway_lb_acl.acl01", "match.0.ip_subnet.#", "1"), + resource.TestCheckResourceAttr("scaleway_lb_acl.acl01", "match.0.ip_subnet.0", "0.0.0.0/0"), + resource.TestCheckResourceAttr("scaleway_lb_acl.acl01", "match.0.http_filter", "acl_http_filter_none"), + resource.TestCheckResourceAttr("scaleway_lb_acl.acl01", "match.0.http_filter_value.#", "0"), + resource.TestCheckResourceAttr("scaleway_lb_acl.acl01", "match.0.invert", "false"), + resource.TestCheckResourceAttr("scaleway_lb_acl.acl01", "match.0.ips_edge_services", "false"), ), }, { diff --git a/internal/services/lb/acls_data_source.go b/internal/services/lb/acls_data_source.go index 6c1e333741..6bc58da41e 100644 --- a/internal/services/lb/acls_data_source.go +++ b/internal/services/lb/acls_data_source.go @@ -82,6 +82,10 @@ func DataSourceACLs() *schema.Resource { Computed: true, Type: schema.TypeBool, }, + "ips_edge_services": { + Computed: true, + Type: schema.TypeBool, + }, }, }, }, diff --git a/internal/services/lb/frontend.go b/internal/services/lb/frontend.go index d25e9e9668..3e931b797b 100644 --- a/internal/services/lb/frontend.go +++ b/internal/services/lb/frontend.go @@ -189,6 +189,11 @@ func ResourceFrontend() *schema.Resource { Optional: true, Description: `If set to true, the condition will be of type "unless"`, }, + "ips_edge_services": { + Type: schema.TypeBool, + Optional: true, + Description: `Defines whether Edge Services IPs should be matched`, + }, }, }, }, @@ -382,7 +387,7 @@ func resourceLbFrontendUpdateACL(ctx context.Context, d *schema.ResourceData, lb } // convert state acl and sanitize them a bit - newACL := expandsLBACLs(d.Get("acl")) + newACL := expandsLBACLs(d, d.Get("acl")) // loop for index, stateACL := range newACL { @@ -441,12 +446,12 @@ func resourceLbFrontendUpdateACL(ctx context.Context, d *schema.ResourceData, lb return nil } -func expandsLBACLs(raw any) []*lbSDK.ACL { - d := raw.([]any) +func expandsLBACLs(d *schema.ResourceData, raw any) []*lbSDK.ACL { + r := raw.([]any) newACL := make([]*lbSDK.ACL, 0) - for _, rawACL := range d { - newACL = append(newACL, expandLbACL(rawACL)) + for index, rawACL := range r { + newACL = append(newACL, expandLbACL(d, rawACL, index)) } return newACL diff --git a/internal/services/lb/testdata/acl-basic.cassette.yaml b/internal/services/lb/testdata/acl-basic.cassette.yaml index b3f4f460d7..9af6315017 100644 --- a/internal/services/lb/testdata/acl-basic.cassette.yaml +++ b/internal/services/lb/testdata/acl-basic.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_ipv6":false,"tags":[]}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","is_ipv6":false,"tags":[]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips method: POST response: @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 288 + content_length: 286 uncompressed: false - body: '{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "288" + - "286" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:08:50 GMT + - Tue, 24 Jun 2025 14:41:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 314dca52-7aff-4f56-a057-7407cd205fd4 + - 2ee22122-de51-46db-9c40-2b9d201a3e01 status: 200 OK code: 200 - duration: 247.079625ms + duration: 224.717583ms - id: 1 request: proto: HTTP/1.1 @@ -67,8 +67,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/706766e4-feb1-4724-ad81-658465d5a683 method: GET response: proto: HTTP/2.0 @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 288 + content_length: 286 uncompressed: false - body: '{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "288" + - "286" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:08:50 GMT + - Tue, 24 Jun 2025 14:41:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30715570-a2eb-4981-a3fc-974d1dcd1e1a + - 9b1903c3-3f67-4e2d-9467-2ba7fac5d4b0 status: 200 OK code: 200 - duration: 71.311ms + duration: 46.027708ms - id: 2 request: proto: HTTP/1.1 @@ -112,13 +112,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-lb-acl","description":"","ip_id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_ids":[],"tags":null,"type":"lb-s","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-lb-acl","description":"","ip_id":"706766e4-feb1-4724-ad81-658465d5a683","ip_ids":[],"tags":null,"type":"lb-s","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs method: POST response: @@ -127,20 +127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 872 + content_length: 870 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-01-24T14:08:50.813248280Z","description":"","frontend_count":0,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"to_create","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:08:50.813248280Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-06-24T14:41:46.546252249Z","description":"","frontend_count":0,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"to_create","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:46.546252249Z","zone":"fr-par-1"}' headers: Content-Length: - - "872" + - "870" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:08:51 GMT + - Tue, 24 Jun 2025 14:41:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fdcefc87-7a26-4a5c-8e37-5809e7e2cfd3 + - 07b15bad-ea18-4caa-be33-8129b068dc98 status: 200 OK code: 200 - duration: 351.203209ms + duration: 426.844916ms - id: 3 request: proto: HTTP/1.1 @@ -167,8 +167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c133eb85-4ea4-4f23-9684-191bc3f611b7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -176,20 +176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 866 + content_length: 1065 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":0,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"to_create","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:08:50.813248Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":0,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"unknown","updated_at":"2025-06-24T14:41:46.842022Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"creating","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:46.849729Z","zone":"fr-par-1"}' headers: Content-Length: - - "866" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:08:51 GMT + - Tue, 24 Jun 2025 14:41:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12ade82b-debb-4dc9-80ae-7f98fc0ea2d9 + - 7db2ae60-e056-4272-81ed-03bfdfaf783d status: 200 OK code: 200 - duration: 86.584583ms + duration: 67.274375ms - id: 4 request: proto: HTTP/1.1 @@ -216,8 +216,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c133eb85-4ea4-4f23-9684-191bc3f611b7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -225,20 +225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1062 + content_length: 1060 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":0,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[{"created_at":"2025-01-08T14:21:27.406070Z","id":"c8764a78-645f-4136-a3bb-991c0f548009","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:09:04.027846Z","zone":"fr-par-1"}],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":0,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:41:48.832702Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"}' headers: Content-Length: - - "1062" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:21 GMT + - Tue, 24 Jun 2025 14:42:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -246,10 +246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79209557-a79a-4d86-a3fb-6a1802cc1200 + - a551a0ea-cdbb-4e73-9aa4-d1930281a2a3 status: 200 OK code: 200 - duration: 110.373875ms + duration: 75.757334ms - id: 5 request: proto: HTTP/1.1 @@ -265,8 +265,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c133eb85-4ea4-4f23-9684-191bc3f611b7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -274,20 +274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1062 + content_length: 1060 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":0,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[{"created_at":"2025-01-08T14:21:27.406070Z","id":"c8764a78-645f-4136-a3bb-991c0f548009","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:09:04.027846Z","zone":"fr-par-1"}],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":0,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:41:48.832702Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"}' headers: Content-Length: - - "1062" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:21 GMT + - Tue, 24 Jun 2025 14:42:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -295,10 +295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59e2e709-fef2-4092-8e13-d4dacdc8fd2f + - 6364b084-c354-4494-8576-c1053a9e2bfd status: 200 OK code: 200 - duration: 111.716917ms + duration: 109.258708ms - id: 6 request: proto: HTTP/1.1 @@ -314,8 +314,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c133eb85-4ea4-4f23-9684-191bc3f611b7/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11/private-networks?order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -334,9 +334,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:21 GMT + - Tue, 24 Jun 2025 14:42:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -344,10 +344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a5d3585-f41f-45ee-ba96-9b78cd2c1d7f + - 7c7a235a-5fea-4395-846f-e8108b1cc38c status: 200 OK code: 200 - duration: 64.250333ms + duration: 58.896208ms - id: 7 request: proto: HTTP/1.1 @@ -363,8 +363,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c133eb85-4ea4-4f23-9684-191bc3f611b7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -372,20 +372,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1062 + content_length: 1060 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":0,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[{"created_at":"2025-01-08T14:21:27.406070Z","id":"c8764a78-645f-4136-a3bb-991c0f548009","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:09:04.027846Z","zone":"fr-par-1"}],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":0,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:41:48.832702Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"}' headers: Content-Length: - - "1062" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:21 GMT + - Tue, 24 Jun 2025 14:42:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -393,29 +393,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d1d1cd3-0d1b-4a2f-9b5d-c2f428e59a9a + - 285a34fb-3c19-4fb4-9c2a-3f57d6f9aac8 status: 200 OK code: 200 - duration: 89.197834ms + duration: 69.228917ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 608 + content_length: 606 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-lb-bkd-cocky-gagarin","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_max_retries":2,"check_send_proxy":false,"transient_check_delay":"0.500000000s","check_delay":60000,"check_timeout":30000},"server_ip":[],"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","ssl_bridging":false,"ignore_ssl_server_verify":false,"max_retries":3,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' + body: '{"name":"tf-lb-bkd-cool-galois","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_max_retries":2,"check_send_proxy":false,"transient_check_delay":"0.500000000s","check_delay":60000,"check_timeout":30000},"server_ip":[],"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","ssl_bridging":false,"ignore_ssl_server_verify":false,"max_retries":3,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c133eb85-4ea4-4f23-9684-191bc3f611b7/backends + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11/backends method: POST response: proto: HTTP/2.0 @@ -423,20 +423,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1910 + content_length: 1906 uncompressed: false - body: '{"created_at":"2025-01-24T14:09:21.702361194Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3d7e64a8-98c1-4efc-a32d-3b08d464fc63","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":0,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[{"created_at":"2025-01-08T14:21:27.406070Z","id":"c8764a78-645f-4136-a3bb-991c0f548009","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-01-24T14:09:21.736588705Z","zone":"fr-par-1"}],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cocky-gagarin","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:09:21.702361194Z"}' + body: '{"created_at":"2025-06-24T14:42:17.394179596Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":0,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-24T14:42:17.418222559Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394179596Z"}' headers: Content-Length: - - "1910" + - "1906" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:21 GMT + - Tue, 24 Jun 2025 14:42:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,10 +444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ffc4c65f-4a5e-4e31-8111-426ea9729eac + - 01f46226-cda8-4502-804b-454d77700e4d status: 200 OK code: 200 - duration: 379.533916ms + duration: 321.0125ms - id: 9 request: proto: HTTP/1.1 @@ -463,8 +463,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c133eb85-4ea4-4f23-9684-191bc3f611b7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -472,20 +472,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1062 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":0,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[{"created_at":"2025-01-08T14:21:27.406070Z","id":"c8764a78-645f-4136-a3bb-991c0f548009","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-01-24T14:09:21.736589Z","zone":"fr-par-1"}],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":0,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-24T14:42:17.418223Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"}' headers: Content-Length: - - "1064" + - "1062" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:22 GMT + - Tue, 24 Jun 2025 14:42:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -493,10 +493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c3f8955-578d-4fc3-850a-5b4293e293af + - 13aebb6e-19f6-4335-9b17-d86c167efa37 status: 200 OK code: 200 - duration: 98.034708ms + duration: 66.187666ms - id: 10 request: proto: HTTP/1.1 @@ -512,8 +512,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/3d7e64a8-98c1-4efc-a32d-3b08d464fc63 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/cf38f32b-9b7d-4daa-a07d-5b1778508c91 method: GET response: proto: HTTP/2.0 @@ -521,20 +521,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1901 + content_length: 1897 uncompressed: false - body: '{"created_at":"2025-01-24T14:09:21.702361Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3d7e64a8-98c1-4efc-a32d-3b08d464fc63","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":0,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[{"created_at":"2025-01-08T14:21:27.406070Z","id":"c8764a78-645f-4136-a3bb-991c0f548009","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-01-24T14:09:21.736589Z","zone":"fr-par-1"}],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cocky-gagarin","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:09:21.702361Z"}' + body: '{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":0,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-24T14:42:17.418223Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"}' headers: Content-Length: - - "1901" + - "1897" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:22 GMT + - Tue, 24 Jun 2025 14:42:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -542,10 +542,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b55afb3c-fb16-4334-b1c9-fdeed80163f6 + - 89cc6e64-a54b-4e6c-912c-5722cfaf0f09 status: 200 OK code: 200 - duration: 104.244666ms + duration: 83.225667ms - id: 11 request: proto: HTTP/1.1 @@ -561,8 +561,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c133eb85-4ea4-4f23-9684-191bc3f611b7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -570,20 +570,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":0,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[{"created_at":"2025-01-08T14:21:27.406070Z","id":"c8764a78-645f-4136-a3bb-991c0f548009","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-01-24T14:09:21.736589Z","zone":"fr-par-1"}],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":0,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:42:17.705051Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"}' headers: Content-Length: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:22 GMT + - Tue, 24 Jun 2025 14:42:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -591,10 +591,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e057c4f-ecf8-400e-8ea0-7230b54359a1 + - b1235152-af3c-46b5-b846-62769b7b3cb7 status: 200 OK code: 200 - duration: 113.038834ms + duration: 65.784208ms - id: 12 request: proto: HTTP/1.1 @@ -610,8 +610,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c133eb85-4ea4-4f23-9684-191bc3f611b7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -619,20 +619,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":0,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[{"created_at":"2025-01-08T14:21:27.406070Z","id":"c8764a78-645f-4136-a3bb-991c0f548009","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-01-24T14:09:21.736589Z","zone":"fr-par-1"}],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":0,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:42:17.705051Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"}' headers: Content-Length: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:22 GMT + - Tue, 24 Jun 2025 14:42:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -640,29 +640,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d2b0656-b840-45b6-9452-499f962de2bc + - 5094f5f7-4fcd-4769-8390-be2c41fa6655 status: 200 OK code: 200 - duration: 79.968542ms + duration: 137.45725ms - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 132 + content_length: 185 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-test","inbound_port":80,"backend_id":"3d7e64a8-98c1-4efc-a32d-3b08d464fc63","enable_http3":false,"timeout_client":30000}' + body: '{"name":"tf-test","inbound_port":80,"backend_id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","enable_http3":false,"connection_rate_limit":0,"enable_access_logs":false,"timeout_client":30000}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c133eb85-4ea4-4f23-9684-191bc3f611b7/frontends + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11/frontends method: POST response: proto: HTTP/2.0 @@ -670,20 +670,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3033 + content_length: 3083 uncompressed: false - body: '{"backend":{"created_at":"2025-01-24T14:09:21.702361Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3d7e64a8-98c1-4efc-a32d-3b08d464fc63","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cocky-gagarin","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:09:21.702361Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:09:22.576551Z","enable_http3":false,"id":"470560f2-8e56-4757-84a1-2af15613b274","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[{"created_at":"2025-01-08T14:21:27.406070Z","id":"c8764a78-645f-4136-a3bb-991c0f548009","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-01-24T14:09:22.630148739Z","zone":"fr-par-1"}],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:09:22.576551Z"}' + body: '{"backend":{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:42:18.163185Z","enable_access_logs":false,"enable_http3":false,"id":"5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-24T14:42:18.217530647Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:42:18.163185Z"}' headers: Content-Length: - - "3033" + - "3083" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:22 GMT + - Tue, 24 Jun 2025 14:42:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -691,10 +691,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 030cf170-cf3d-47bc-9a3d-cd8b72493edb + - 54f986c9-c15a-4473-8ffa-1c55c34a07dd status: 200 OK code: 200 - duration: 504.404375ms + duration: 493.363417ms - id: 14 request: proto: HTTP/1.1 @@ -710,8 +710,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/470560f2-8e56-4757-84a1-2af15613b274 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c method: GET response: proto: HTTP/2.0 @@ -719,20 +719,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2828 + content_length: 2878 uncompressed: false - body: '{"backend":{"created_at":"2025-01-24T14:09:21.702361Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3d7e64a8-98c1-4efc-a32d-3b08d464fc63","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cocky-gagarin","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:09:21.702361Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:09:22.576551Z","enable_http3":false,"id":"470560f2-8e56-4757-84a1-2af15613b274","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:09:22.576551Z"}' + body: '{"backend":{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:42:18.163185Z","enable_access_logs":false,"enable_http3":false,"id":"5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:42:18.163185Z"}' headers: Content-Length: - - "2828" + - "2878" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:22 GMT + - Tue, 24 Jun 2025 14:42:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -740,29 +740,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2b8fbe5-8c8d-4a32-bfd8-83f6c688da9c + - 8ee8b0d7-ad19-4ad5-bcaf-39e964565a5f status: 200 OK code: 200 - duration: 98.320625ms + duration: 110.612083ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 279 + content_length: 305 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"test-acl-basic","action":{"type":"allow","redirect":null},"match":{"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"],"http_filter":"acl_http_filter_none","http_filter_value":null,"http_filter_option":null,"invert":true},"index":4,"description":"a description"}' + body: '{"name":"test-acl-basic","action":{"type":"allow","redirect":null},"match":{"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"],"ips_edge_services":false,"http_filter":"acl_http_filter_none","http_filter_value":null,"http_filter_option":null,"invert":true},"index":4,"description":"a description"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/470560f2-8e56-4757-84a1-2af15613b274/acls + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c/acls method: POST response: proto: HTTP/2.0 @@ -770,20 +770,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3253 + content_length: 3329 uncompressed: false - body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:09:23.238386269Z","description":"a description","frontend":{"backend":{"created_at":"2025-01-24T14:09:21.702361Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3d7e64a8-98c1-4efc-a32d-3b08d464fc63","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cocky-gagarin","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:09:21.702361Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:09:22.576551Z","enable_http3":false,"id":"470560f2-8e56-4757-84a1-2af15613b274","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:09:22.576551Z"},"id":"4defa4b8-875f-4212-916c-6bc94d080893","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"]},"name":"test-acl-basic","updated_at":"2025-01-24T14:09:23.238386269Z"}' + body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:42:18.758745753Z","description":"a description","frontend":{"backend":{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:42:18.163185Z","enable_access_logs":false,"enable_http3":false,"id":"5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:42:18.163185Z"},"id":"0812569a-083f-4b48-8f51-cf060520bf18","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"],"ips_edge_services":false},"name":"test-acl-basic","updated_at":"2025-06-24T14:42:18.758745753Z"}' headers: Content-Length: - - "3253" + - "3329" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:23 GMT + - Tue, 24 Jun 2025 14:42:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -791,10 +791,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 878bd143-448a-4667-b031-867e4388f727 + - 1d8bc773-e8cf-47af-8064-42171dbf7655 status: 200 OK code: 200 - duration: 515.4745ms + duration: 362.231417ms - id: 16 request: proto: HTTP/1.1 @@ -810,8 +810,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/4defa4b8-875f-4212-916c-6bc94d080893 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/0812569a-083f-4b48-8f51-cf060520bf18 method: GET response: proto: HTTP/2.0 @@ -819,20 +819,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3247 + content_length: 3323 uncompressed: false - body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:09:23.238386Z","description":"a description","frontend":{"backend":{"created_at":"2025-01-24T14:09:21.702361Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3d7e64a8-98c1-4efc-a32d-3b08d464fc63","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cocky-gagarin","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:09:21.702361Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:09:22.576551Z","enable_http3":false,"id":"470560f2-8e56-4757-84a1-2af15613b274","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:09:22.576551Z"},"id":"4defa4b8-875f-4212-916c-6bc94d080893","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"]},"name":"test-acl-basic","updated_at":"2025-01-24T14:09:23.238386Z"}' + body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:42:18.758746Z","description":"a description","frontend":{"backend":{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:42:18.163185Z","enable_access_logs":false,"enable_http3":false,"id":"5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:42:18.163185Z"},"id":"0812569a-083f-4b48-8f51-cf060520bf18","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"],"ips_edge_services":false},"name":"test-acl-basic","updated_at":"2025-06-24T14:42:18.758746Z"}' headers: Content-Length: - - "3247" + - "3323" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:23 GMT + - Tue, 24 Jun 2025 14:42:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -840,10 +840,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a5c6afff-f75f-4ee2-a603-1500b316fc20 + - e551073a-653c-4c17-bb21-149e6f1306d8 status: 200 OK code: 200 - duration: 113.690791ms + duration: 111.766417ms - id: 17 request: proto: HTTP/1.1 @@ -859,8 +859,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/4defa4b8-875f-4212-916c-6bc94d080893 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/0812569a-083f-4b48-8f51-cf060520bf18 method: GET response: proto: HTTP/2.0 @@ -868,20 +868,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3247 + content_length: 3323 uncompressed: false - body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:09:23.238386Z","description":"a description","frontend":{"backend":{"created_at":"2025-01-24T14:09:21.702361Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3d7e64a8-98c1-4efc-a32d-3b08d464fc63","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cocky-gagarin","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:09:21.702361Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:09:22.576551Z","enable_http3":false,"id":"470560f2-8e56-4757-84a1-2af15613b274","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:09:22.576551Z"},"id":"4defa4b8-875f-4212-916c-6bc94d080893","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"]},"name":"test-acl-basic","updated_at":"2025-01-24T14:09:23.238386Z"}' + body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:42:18.758746Z","description":"a description","frontend":{"backend":{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:42:18.163185Z","enable_access_logs":false,"enable_http3":false,"id":"5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:42:18.163185Z"},"id":"0812569a-083f-4b48-8f51-cf060520bf18","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"],"ips_edge_services":false},"name":"test-acl-basic","updated_at":"2025-06-24T14:42:18.758746Z"}' headers: Content-Length: - - "3247" + - "3323" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:23 GMT + - Tue, 24 Jun 2025 14:42:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -889,10 +889,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cad7b29b-22a4-4fd7-abc5-e70f1a593f22 + - 686115a8-cc9f-4bb4-9928-179cf1ccf496 status: 200 OK code: 200 - duration: 129.881875ms + duration: 166.945833ms - id: 18 request: proto: HTTP/1.1 @@ -908,8 +908,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/706766e4-feb1-4724-ad81-658465d5a683 method: GET response: proto: HTTP/2.0 @@ -917,20 +917,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 322 + content_length: 320 uncompressed: false - body: '{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "322" + - "320" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:24 GMT + - Tue, 24 Jun 2025 14:42:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -938,10 +938,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 486da314-dd36-4cb1-ac21-4a4c8b57cd8e + - fe3029d2-ae66-4821-abc1-d74848880070 status: 200 OK code: 200 - duration: 63.679292ms + duration: 169.708625ms - id: 19 request: proto: HTTP/1.1 @@ -957,8 +957,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c133eb85-4ea4-4f23-9684-191bc3f611b7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -966,20 +966,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1062 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[{"created_at":"2025-01-08T14:21:27.406070Z","id":"c8764a78-645f-4136-a3bb-991c0f548009","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:09:24.142154Z","zone":"fr-par-1"}],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:42:19.180440Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"}' headers: Content-Length: - - "1062" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:24 GMT + - Tue, 24 Jun 2025 14:42:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -987,10 +987,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 673d6888-41a0-4706-a4eb-dda6d14f0bce + - b89d0e0f-f5fd-40a6-b816-497830e941c1 status: 200 OK code: 200 - duration: 117.058542ms + duration: 67.997416ms - id: 20 request: proto: HTTP/1.1 @@ -1006,8 +1006,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c133eb85-4ea4-4f23-9684-191bc3f611b7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -1015,20 +1015,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1062 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[{"created_at":"2025-01-08T14:21:27.406070Z","id":"c8764a78-645f-4136-a3bb-991c0f548009","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:09:24.142154Z","zone":"fr-par-1"}],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:42:19.180440Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"}' headers: Content-Length: - - "1062" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:24 GMT + - Tue, 24 Jun 2025 14:42:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1036,10 +1036,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2670c72-b719-4844-b5c4-8f1c00f47dd9 + - c5283884-7d0d-40f7-ad37-4c06e9b67fd2 status: 200 OK code: 200 - duration: 105.258208ms + duration: 67.954125ms - id: 21 request: proto: HTTP/1.1 @@ -1055,8 +1055,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c133eb85-4ea4-4f23-9684-191bc3f611b7/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11/private-networks?order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -1075,9 +1075,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:24 GMT + - Tue, 24 Jun 2025 14:42:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1085,10 +1085,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4f7b8a8-2f13-45e3-9200-b5d1134c29f1 + - d7173a63-0714-4ceb-b561-0e5a5dc0ede1 status: 200 OK code: 200 - duration: 81.209959ms + duration: 47.521958ms - id: 22 request: proto: HTTP/1.1 @@ -1104,8 +1104,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/3d7e64a8-98c1-4efc-a32d-3b08d464fc63 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/cf38f32b-9b7d-4daa-a07d-5b1778508c91 method: GET response: proto: HTTP/2.0 @@ -1113,20 +1113,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + content_length: 1895 uncompressed: false - body: '{"created_at":"2025-01-24T14:09:21.702361Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3d7e64a8-98c1-4efc-a32d-3b08d464fc63","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[{"created_at":"2025-01-08T14:21:27.406070Z","id":"c8764a78-645f-4136-a3bb-991c0f548009","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:09:24.142154Z","zone":"fr-par-1"}],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cocky-gagarin","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:09:21.702361Z"}' + body: '{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:42:19.180440Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"}' headers: Content-Length: - - "1899" + - "1895" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:25 GMT + - Tue, 24 Jun 2025 14:42:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1134,10 +1134,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6fd3d44b-b1e5-4dfe-93a9-a228ae933025 + - fd16f07c-53a8-4a6d-8e7c-213d7d28f3cd status: 200 OK code: 200 - duration: 99.534ms + duration: 89.166667ms - id: 23 request: proto: HTTP/1.1 @@ -1153,8 +1153,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c133eb85-4ea4-4f23-9684-191bc3f611b7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -1162,20 +1162,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1062 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[{"created_at":"2025-01-08T14:21:27.406070Z","id":"c8764a78-645f-4136-a3bb-991c0f548009","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:09:24.142154Z","zone":"fr-par-1"}],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:42:19.180440Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"}' headers: Content-Length: - - "1062" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:25 GMT + - Tue, 24 Jun 2025 14:42:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1183,10 +1183,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a9dd13c-f559-4f31-92f5-72edd9f180e1 + - fba79e0b-833a-4903-9f9b-18fc16a0a940 status: 200 OK code: 200 - duration: 240.49325ms + duration: 83.203791ms - id: 24 request: proto: HTTP/1.1 @@ -1202,8 +1202,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/470560f2-8e56-4757-84a1-2af15613b274 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c method: GET response: proto: HTTP/2.0 @@ -1211,20 +1211,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2828 + content_length: 2878 uncompressed: false - body: '{"backend":{"created_at":"2025-01-24T14:09:21.702361Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3d7e64a8-98c1-4efc-a32d-3b08d464fc63","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cocky-gagarin","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:09:21.702361Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:09:22.576551Z","enable_http3":false,"id":"470560f2-8e56-4757-84a1-2af15613b274","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:09:22.576551Z"}' + body: '{"backend":{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:42:18.163185Z","enable_access_logs":false,"enable_http3":false,"id":"5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:42:18.163185Z"}' headers: Content-Length: - - "2828" + - "2878" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:25 GMT + - Tue, 24 Jun 2025 14:42:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1232,10 +1232,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 91b9e919-6df9-4879-9618-3c090a136c42 + - c123f85f-140d-47a3-9fa9-039be7376b4f status: 200 OK code: 200 - duration: 128.853208ms + duration: 111.840167ms - id: 25 request: proto: HTTP/1.1 @@ -1251,8 +1251,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/4defa4b8-875f-4212-916c-6bc94d080893 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/0812569a-083f-4b48-8f51-cf060520bf18 method: GET response: proto: HTTP/2.0 @@ -1260,20 +1260,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3247 + content_length: 3323 uncompressed: false - body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:09:23.238386Z","description":"a description","frontend":{"backend":{"created_at":"2025-01-24T14:09:21.702361Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3d7e64a8-98c1-4efc-a32d-3b08d464fc63","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cocky-gagarin","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:09:21.702361Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:09:22.576551Z","enable_http3":false,"id":"470560f2-8e56-4757-84a1-2af15613b274","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:09:22.576551Z"},"id":"4defa4b8-875f-4212-916c-6bc94d080893","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"]},"name":"test-acl-basic","updated_at":"2025-01-24T14:09:23.238386Z"}' + body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:42:18.758746Z","description":"a description","frontend":{"backend":{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:42:18.163185Z","enable_access_logs":false,"enable_http3":false,"id":"5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:42:18.163185Z"},"id":"0812569a-083f-4b48-8f51-cf060520bf18","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"],"ips_edge_services":false},"name":"test-acl-basic","updated_at":"2025-06-24T14:42:18.758746Z"}' headers: Content-Length: - - "3247" + - "3323" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:25 GMT + - Tue, 24 Jun 2025 14:42:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1281,10 +1281,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92511b46-6159-41c6-a640-d1d14a4e21d5 + - c849c30c-ed59-496f-99f0-6bff1d756d6d status: 200 OK code: 200 - duration: 109.90025ms + duration: 104.271ms - id: 26 request: proto: HTTP/1.1 @@ -1300,8 +1300,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/706766e4-feb1-4724-ad81-658465d5a683 method: GET response: proto: HTTP/2.0 @@ -1309,20 +1309,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 322 + content_length: 320 uncompressed: false - body: '{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "322" + - "320" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:26 GMT + - Tue, 24 Jun 2025 14:42:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1330,10 +1330,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1715d9e1-78a5-4003-9a3c-9266cd2bcac2 + - d70bd0dc-9e5d-4079-b863-9b2b2fcc0499 status: 200 OK code: 200 - duration: 57.401875ms + duration: 52.271791ms - id: 27 request: proto: HTTP/1.1 @@ -1349,8 +1349,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c133eb85-4ea4-4f23-9684-191bc3f611b7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -1358,20 +1358,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1062 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[{"created_at":"2025-01-08T14:21:27.406070Z","id":"c8764a78-645f-4136-a3bb-991c0f548009","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:09:24.142154Z","zone":"fr-par-1"}],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:42:19.180440Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"}' headers: Content-Length: - - "1062" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:26 GMT + - Tue, 24 Jun 2025 14:42:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1379,10 +1379,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e096329b-911a-45a0-950f-70f9d0378b40 + - f04510c2-bc54-4c65-8128-2c4de5de4c54 status: 200 OK code: 200 - duration: 177.403416ms + duration: 65.238417ms - id: 28 request: proto: HTTP/1.1 @@ -1398,8 +1398,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c133eb85-4ea4-4f23-9684-191bc3f611b7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -1407,20 +1407,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1062 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[{"created_at":"2025-01-08T14:21:27.406070Z","id":"c8764a78-645f-4136-a3bb-991c0f548009","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:09:24.142154Z","zone":"fr-par-1"}],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:42:19.180440Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"}' headers: Content-Length: - - "1062" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:26 GMT + - Tue, 24 Jun 2025 14:42:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1428,10 +1428,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0efb8418-a32f-4962-964c-01e8df95d741 + - 2579f50b-2fd9-4ec1-87c5-c82cddd752ab status: 200 OK code: 200 - duration: 89.953834ms + duration: 58.526417ms - id: 29 request: proto: HTTP/1.1 @@ -1447,8 +1447,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c133eb85-4ea4-4f23-9684-191bc3f611b7/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11/private-networks?order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -1467,9 +1467,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:26 GMT + - Tue, 24 Jun 2025 14:42:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1477,10 +1477,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 49cb8c06-cdf1-4327-99f5-7e2c4112dd20 + - d5543766-c8da-4a3f-8a69-ded393159835 status: 200 OK code: 200 - duration: 78.54075ms + duration: 72.808167ms - id: 30 request: proto: HTTP/1.1 @@ -1496,8 +1496,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/3d7e64a8-98c1-4efc-a32d-3b08d464fc63 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/cf38f32b-9b7d-4daa-a07d-5b1778508c91 method: GET response: proto: HTTP/2.0 @@ -1505,20 +1505,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + content_length: 1895 uncompressed: false - body: '{"created_at":"2025-01-24T14:09:21.702361Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3d7e64a8-98c1-4efc-a32d-3b08d464fc63","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[{"created_at":"2025-01-08T14:21:27.406070Z","id":"c8764a78-645f-4136-a3bb-991c0f548009","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:09:24.142154Z","zone":"fr-par-1"}],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cocky-gagarin","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:09:21.702361Z"}' + body: '{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:42:19.180440Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"}' headers: Content-Length: - - "1899" + - "1895" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:26 GMT + - Tue, 24 Jun 2025 14:42:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1526,10 +1526,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8db3dd8f-3b12-484b-a7a2-7a3e8577bfa3 + - b3a3d476-d528-4df4-ae15-cc903f56058c status: 200 OK code: 200 - duration: 89.621917ms + duration: 84.286458ms - id: 31 request: proto: HTTP/1.1 @@ -1545,8 +1545,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c133eb85-4ea4-4f23-9684-191bc3f611b7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -1554,20 +1554,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1062 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[{"created_at":"2025-01-08T14:21:27.406070Z","id":"c8764a78-645f-4136-a3bb-991c0f548009","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:09:24.142154Z","zone":"fr-par-1"}],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:42:19.180440Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"}' headers: Content-Length: - - "1062" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:26 GMT + - Tue, 24 Jun 2025 14:42:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1575,10 +1575,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11784c57-793f-4f3d-b967-0c790947929b + - 73e17468-8c5f-4659-8e9c-606e6d4ccbfd status: 200 OK code: 200 - duration: 99.648375ms + duration: 72.9985ms - id: 32 request: proto: HTTP/1.1 @@ -1594,8 +1594,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/470560f2-8e56-4757-84a1-2af15613b274 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c method: GET response: proto: HTTP/2.0 @@ -1603,20 +1603,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2828 + content_length: 2878 uncompressed: false - body: '{"backend":{"created_at":"2025-01-24T14:09:21.702361Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3d7e64a8-98c1-4efc-a32d-3b08d464fc63","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cocky-gagarin","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:09:21.702361Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:09:22.576551Z","enable_http3":false,"id":"470560f2-8e56-4757-84a1-2af15613b274","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:09:22.576551Z"}' + body: '{"backend":{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:42:18.163185Z","enable_access_logs":false,"enable_http3":false,"id":"5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:42:18.163185Z"}' headers: Content-Length: - - "2828" + - "2878" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:27 GMT + - Tue, 24 Jun 2025 14:42:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1624,10 +1624,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec2b1ee7-1755-4428-a5b8-70a2f16ab229 + - 61a8c251-1fde-49f6-a6f1-3cb13f6b23eb status: 200 OK code: 200 - duration: 262.160041ms + duration: 89.233833ms - id: 33 request: proto: HTTP/1.1 @@ -1643,8 +1643,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/4defa4b8-875f-4212-916c-6bc94d080893 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/0812569a-083f-4b48-8f51-cf060520bf18 method: GET response: proto: HTTP/2.0 @@ -1652,20 +1652,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3247 + content_length: 3323 uncompressed: false - body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:09:23.238386Z","description":"a description","frontend":{"backend":{"created_at":"2025-01-24T14:09:21.702361Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3d7e64a8-98c1-4efc-a32d-3b08d464fc63","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cocky-gagarin","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:09:21.702361Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:09:22.576551Z","enable_http3":false,"id":"470560f2-8e56-4757-84a1-2af15613b274","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:09:22.576551Z"},"id":"4defa4b8-875f-4212-916c-6bc94d080893","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"]},"name":"test-acl-basic","updated_at":"2025-01-24T14:09:23.238386Z"}' + body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:42:18.758746Z","description":"a description","frontend":{"backend":{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:42:18.163185Z","enable_access_logs":false,"enable_http3":false,"id":"5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:42:18.163185Z"},"id":"0812569a-083f-4b48-8f51-cf060520bf18","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"],"ips_edge_services":false},"name":"test-acl-basic","updated_at":"2025-06-24T14:42:18.758746Z"}' headers: Content-Length: - - "3247" + - "3323" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:27 GMT + - Tue, 24 Jun 2025 14:42:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1673,29 +1673,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6caa38e7-5bd9-4869-863c-56efbfae2d80 + - 80f48dc6-1600-4b02-865f-f2adece9cf14 status: 200 OK code: 200 - duration: 142.066042ms + duration: 109.344708ms - id: 34 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 259 + content_length: 285 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"updated-test-acl-basic","action":{"type":"deny","redirect":null},"match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"acl_http_filter_none","http_filter_value":null,"http_filter_option":null,"invert":false},"index":3,"description":"updated description"}' + body: '{"name":"updated-test-acl-basic","action":{"type":"deny","redirect":null},"match":{"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false,"http_filter":"acl_http_filter_none","http_filter_value":null,"http_filter_option":null,"invert":false},"index":3,"description":"updated description"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/4defa4b8-875f-4212-916c-6bc94d080893 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/0812569a-083f-4b48-8f51-cf060520bf18 method: PUT response: proto: HTTP/2.0 @@ -1703,20 +1703,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3435 + content_length: 3511 uncompressed: false - body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-01-24T14:09:23.238386Z","description":"updated description","frontend":{"backend":{"created_at":"2025-01-24T14:09:21.702361Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3d7e64a8-98c1-4efc-a32d-3b08d464fc63","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cocky-gagarin","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:09:21.702361Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:09:22.576551Z","enable_http3":false,"id":"470560f2-8e56-4757-84a1-2af15613b274","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[{"created_at":"2025-01-08T14:21:27.406070Z","id":"c8764a78-645f-4136-a3bb-991c0f548009","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-01-24T14:09:28.424265571Z","zone":"fr-par-1"}],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:09:22.576551Z"},"id":"4defa4b8-875f-4212-916c-6bc94d080893","index":3,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"updated-test-acl-basic","updated_at":"2025-01-24T14:09:28.397533257Z"}' + body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T14:42:18.758746Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:42:18.163185Z","enable_access_logs":false,"enable_http3":false,"id":"5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-24T14:42:21.478171760Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:42:18.163185Z"},"id":"0812569a-083f-4b48-8f51-cf060520bf18","index":3,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"updated-test-acl-basic","updated_at":"2025-06-24T14:42:21.453445123Z"}' headers: Content-Length: - - "3435" + - "3511" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:28 GMT + - Tue, 24 Jun 2025 14:42:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1724,10 +1724,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9cb65cf6-6ca9-4ca4-8930-c5c2a1ed7d02 + - a990132b-d078-44dd-beab-599cb66bd743 status: 200 OK code: 200 - duration: 340.885917ms + duration: 257.965791ms - id: 35 request: proto: HTTP/1.1 @@ -1743,8 +1743,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/4defa4b8-875f-4212-916c-6bc94d080893 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/0812569a-083f-4b48-8f51-cf060520bf18 method: GET response: proto: HTTP/2.0 @@ -1752,20 +1752,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3227 + content_length: 3303 uncompressed: false - body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-01-24T14:09:23.238386Z","description":"updated description","frontend":{"backend":{"created_at":"2025-01-24T14:09:21.702361Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3d7e64a8-98c1-4efc-a32d-3b08d464fc63","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cocky-gagarin","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:09:21.702361Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:09:22.576551Z","enable_http3":false,"id":"470560f2-8e56-4757-84a1-2af15613b274","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:09:22.576551Z"},"id":"4defa4b8-875f-4212-916c-6bc94d080893","index":3,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"updated-test-acl-basic","updated_at":"2025-01-24T14:09:28.397533Z"}' + body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T14:42:18.758746Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:42:18.163185Z","enable_access_logs":false,"enable_http3":false,"id":"5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:42:18.163185Z"},"id":"0812569a-083f-4b48-8f51-cf060520bf18","index":3,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"updated-test-acl-basic","updated_at":"2025-06-24T14:42:21.453445Z"}' headers: Content-Length: - - "3227" + - "3303" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:28 GMT + - Tue, 24 Jun 2025 14:42:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1773,10 +1773,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3029138f-168c-4154-93ba-e5bf03d9502e + - d90ade9c-77c1-453d-bc61-d0c566d600e7 status: 200 OK code: 200 - duration: 126.136125ms + duration: 91.984792ms - id: 36 request: proto: HTTP/1.1 @@ -1792,8 +1792,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/4defa4b8-875f-4212-916c-6bc94d080893 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/0812569a-083f-4b48-8f51-cf060520bf18 method: GET response: proto: HTTP/2.0 @@ -1801,20 +1801,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3227 + content_length: 3303 uncompressed: false - body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-01-24T14:09:23.238386Z","description":"updated description","frontend":{"backend":{"created_at":"2025-01-24T14:09:21.702361Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3d7e64a8-98c1-4efc-a32d-3b08d464fc63","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cocky-gagarin","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:09:21.702361Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:09:22.576551Z","enable_http3":false,"id":"470560f2-8e56-4757-84a1-2af15613b274","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:09:22.576551Z"},"id":"4defa4b8-875f-4212-916c-6bc94d080893","index":3,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"updated-test-acl-basic","updated_at":"2025-01-24T14:09:28.397533Z"}' + body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T14:42:18.758746Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:42:18.163185Z","enable_access_logs":false,"enable_http3":false,"id":"5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:42:18.163185Z"},"id":"0812569a-083f-4b48-8f51-cf060520bf18","index":3,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"updated-test-acl-basic","updated_at":"2025-06-24T14:42:21.453445Z"}' headers: Content-Length: - - "3227" + - "3303" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:29 GMT + - Tue, 24 Jun 2025 14:42:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1822,10 +1822,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d6f9f8b-9392-4e28-ad63-d4d6d18921c3 + - 3d280576-b2b7-43f3-a7aa-7e1904c15e3c status: 200 OK code: 200 - duration: 152.091834ms + duration: 105.063417ms - id: 37 request: proto: HTTP/1.1 @@ -1841,8 +1841,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/706766e4-feb1-4724-ad81-658465d5a683 method: GET response: proto: HTTP/2.0 @@ -1850,20 +1850,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 322 + content_length: 320 uncompressed: false - body: '{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "322" + - "320" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:29 GMT + - Tue, 24 Jun 2025 14:42:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1871,10 +1871,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e428abf1-e45c-466b-9678-7dfb0ed200dc + - 652c13a1-1860-4694-b8fe-143f554e21f6 status: 200 OK code: 200 - duration: 67.918125ms + duration: 80.462209ms - id: 38 request: proto: HTTP/1.1 @@ -1890,8 +1890,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c133eb85-4ea4-4f23-9684-191bc3f611b7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -1899,20 +1899,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[{"created_at":"2025-01-08T14:21:27.406070Z","id":"c8764a78-645f-4136-a3bb-991c0f548009","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-01-24T14:09:28.424266Z","zone":"fr-par-1"}],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:42:21.864392Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"}' headers: Content-Length: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:29 GMT + - Tue, 24 Jun 2025 14:42:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1920,10 +1920,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ae78a5d-fcfe-45c3-a7a7-f60dc9526491 + - d1884fb7-a203-4129-89f5-8dbfa065fc73 status: 200 OK code: 200 - duration: 121.457ms + duration: 66.85675ms - id: 39 request: proto: HTTP/1.1 @@ -1939,8 +1939,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c133eb85-4ea4-4f23-9684-191bc3f611b7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -1948,20 +1948,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[{"created_at":"2025-01-08T14:21:27.406070Z","id":"c8764a78-645f-4136-a3bb-991c0f548009","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-01-24T14:09:28.424266Z","zone":"fr-par-1"}],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:42:21.864392Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"}' headers: Content-Length: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:29 GMT + - Tue, 24 Jun 2025 14:42:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1969,10 +1969,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33b5758b-c8f7-4426-b722-f5c7656bb70f + - 6d7673c2-17f3-48f2-9868-5d9ee253b82b status: 200 OK code: 200 - duration: 99.813416ms + duration: 79.65375ms - id: 40 request: proto: HTTP/1.1 @@ -1988,8 +1988,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c133eb85-4ea4-4f23-9684-191bc3f611b7/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11/private-networks?order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -2008,9 +2008,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:30 GMT + - Tue, 24 Jun 2025 14:42:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2018,10 +2018,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5e68291-7500-4f7f-b8e7-12ed862bf4af + - 37d05109-6259-473d-a12b-144253d24f5d status: 200 OK code: 200 - duration: 80.736ms + duration: 51.378083ms - id: 41 request: proto: HTTP/1.1 @@ -2037,8 +2037,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/3d7e64a8-98c1-4efc-a32d-3b08d464fc63 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/cf38f32b-9b7d-4daa-a07d-5b1778508c91 method: GET response: proto: HTTP/2.0 @@ -2046,20 +2046,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1901 + content_length: 1895 uncompressed: false - body: '{"created_at":"2025-01-24T14:09:21.702361Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3d7e64a8-98c1-4efc-a32d-3b08d464fc63","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[{"created_at":"2025-01-08T14:21:27.406070Z","id":"c8764a78-645f-4136-a3bb-991c0f548009","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-01-24T14:09:28.424266Z","zone":"fr-par-1"}],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cocky-gagarin","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:09:21.702361Z"}' + body: '{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:42:21.864392Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"}' headers: Content-Length: - - "1901" + - "1895" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:30 GMT + - Tue, 24 Jun 2025 14:42:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2067,10 +2067,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ecbd9073-ebec-4212-a1dc-96716c741442 + - e9c0747a-58af-4fd3-869b-672a1c4e32ca status: 200 OK code: 200 - duration: 107.525167ms + duration: 72.499375ms - id: 42 request: proto: HTTP/1.1 @@ -2086,8 +2086,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c133eb85-4ea4-4f23-9684-191bc3f611b7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -2095,20 +2095,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[{"created_at":"2025-01-08T14:21:27.406070Z","id":"c8764a78-645f-4136-a3bb-991c0f548009","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-01-24T14:09:28.424266Z","zone":"fr-par-1"}],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:42:21.864392Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"}' headers: Content-Length: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:30 GMT + - Tue, 24 Jun 2025 14:42:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2116,10 +2116,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d5d3168-9921-488d-b20c-9c7c987a126d + - 32a80159-bbdc-481f-b194-eff6b8dc934a status: 200 OK code: 200 - duration: 88.975541ms + duration: 73.970084ms - id: 43 request: proto: HTTP/1.1 @@ -2135,8 +2135,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/470560f2-8e56-4757-84a1-2af15613b274 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c method: GET response: proto: HTTP/2.0 @@ -2144,20 +2144,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2828 + content_length: 2878 uncompressed: false - body: '{"backend":{"created_at":"2025-01-24T14:09:21.702361Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3d7e64a8-98c1-4efc-a32d-3b08d464fc63","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cocky-gagarin","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:09:21.702361Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:09:22.576551Z","enable_http3":false,"id":"470560f2-8e56-4757-84a1-2af15613b274","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:09:22.576551Z"}' + body: '{"backend":{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:42:18.163185Z","enable_access_logs":false,"enable_http3":false,"id":"5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:42:18.163185Z"}' headers: Content-Length: - - "2828" + - "2878" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:30 GMT + - Tue, 24 Jun 2025 14:42:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2165,10 +2165,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c587e87-a82b-4b18-a5ef-772de4b6e58c + - ad0837ce-d126-4c2a-b351-b49358ded1e0 status: 200 OK code: 200 - duration: 116.788333ms + duration: 86.230416ms - id: 44 request: proto: HTTP/1.1 @@ -2184,8 +2184,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/4defa4b8-875f-4212-916c-6bc94d080893 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/0812569a-083f-4b48-8f51-cf060520bf18 method: GET response: proto: HTTP/2.0 @@ -2193,20 +2193,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3227 + content_length: 3303 uncompressed: false - body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-01-24T14:09:23.238386Z","description":"updated description","frontend":{"backend":{"created_at":"2025-01-24T14:09:21.702361Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3d7e64a8-98c1-4efc-a32d-3b08d464fc63","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cocky-gagarin","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:09:21.702361Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:09:22.576551Z","enable_http3":false,"id":"470560f2-8e56-4757-84a1-2af15613b274","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:09:22.576551Z"},"id":"4defa4b8-875f-4212-916c-6bc94d080893","index":3,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"updated-test-acl-basic","updated_at":"2025-01-24T14:09:28.397533Z"}' + body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T14:42:18.758746Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:42:18.163185Z","enable_access_logs":false,"enable_http3":false,"id":"5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:42:18.163185Z"},"id":"0812569a-083f-4b48-8f51-cf060520bf18","index":3,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"updated-test-acl-basic","updated_at":"2025-06-24T14:42:21.453445Z"}' headers: Content-Length: - - "3227" + - "3303" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:30 GMT + - Tue, 24 Jun 2025 14:42:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2214,10 +2214,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1561b20-f152-4cff-a74b-3dcffc5c47c8 + - 0b602d6e-994a-483a-9255-0cff85ed8c59 status: 200 OK code: 200 - duration: 205.320667ms + duration: 100.673792ms - id: 45 request: proto: HTTP/1.1 @@ -2233,8 +2233,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/706766e4-feb1-4724-ad81-658465d5a683 method: GET response: proto: HTTP/2.0 @@ -2242,20 +2242,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 322 + content_length: 320 uncompressed: false - body: '{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "322" + - "320" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:31 GMT + - Tue, 24 Jun 2025 14:42:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2263,10 +2263,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f371c893-ec9d-4e56-960c-0348b9320698 + - 90ba3ad2-9a97-4526-aefe-50f73aacb6a9 status: 200 OK code: 200 - duration: 88.741625ms + duration: 49.86525ms - id: 46 request: proto: HTTP/1.1 @@ -2282,8 +2282,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c133eb85-4ea4-4f23-9684-191bc3f611b7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -2291,20 +2291,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1062 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[{"created_at":"2025-01-08T14:21:27.406070Z","id":"c8764a78-645f-4136-a3bb-991c0f548009","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:09:30.413806Z","zone":"fr-par-1"}],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:42:21.864392Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"}' headers: Content-Length: - - "1062" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:31 GMT + - Tue, 24 Jun 2025 14:42:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2312,10 +2312,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 021cb602-bb3d-4cbc-820f-ef42b6e62794 + - 17484f5b-2a26-408e-9f04-6c1625c94439 status: 200 OK code: 200 - duration: 99.001083ms + duration: 92.138083ms - id: 47 request: proto: HTTP/1.1 @@ -2331,8 +2331,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/3d7e64a8-98c1-4efc-a32d-3b08d464fc63 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -2340,20 +2340,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + content_length: 1060 uncompressed: false - body: '{"created_at":"2025-01-24T14:09:21.702361Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3d7e64a8-98c1-4efc-a32d-3b08d464fc63","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[{"created_at":"2025-01-08T14:21:27.406070Z","id":"c8764a78-645f-4136-a3bb-991c0f548009","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:09:30.413806Z","zone":"fr-par-1"}],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cocky-gagarin","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:09:21.702361Z"}' + body: '{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:42:21.864392Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"}' headers: Content-Length: - - "1899" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:31 GMT + - Tue, 24 Jun 2025 14:42:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2361,10 +2361,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ab33db2-11a6-4204-8de7-abc9794669fb + - 06c637a6-897a-4cdc-b306-b8ddc86294d0 status: 200 OK code: 200 - duration: 103.036209ms + duration: 73.231083ms - id: 48 request: proto: HTTP/1.1 @@ -2380,8 +2380,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/4defa4b8-875f-4212-916c-6bc94d080893 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11/private-networks?order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -2389,20 +2389,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3227 + content_length: 38 uncompressed: false - body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-01-24T14:09:23.238386Z","description":"updated description","frontend":{"backend":{"created_at":"2025-01-24T14:09:21.702361Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3d7e64a8-98c1-4efc-a32d-3b08d464fc63","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cocky-gagarin","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:09:21.702361Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:09:22.576551Z","enable_http3":false,"id":"470560f2-8e56-4757-84a1-2af15613b274","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:09:22.576551Z"},"id":"4defa4b8-875f-4212-916c-6bc94d080893","index":3,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"updated-test-acl-basic","updated_at":"2025-01-24T14:09:28.397533Z"}' + body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "3227" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:31 GMT + - Tue, 24 Jun 2025 14:42:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2410,10 +2410,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d60a0b9d-6cc2-476f-a9b4-cc48bd1b29a1 + - 2fd4fa50-b6a5-4c0b-ab69-706b0ebc4441 status: 200 OK code: 200 - duration: 111.493666ms + duration: 51.290541ms - id: 49 request: proto: HTTP/1.1 @@ -2429,8 +2429,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/470560f2-8e56-4757-84a1-2af15613b274 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/cf38f32b-9b7d-4daa-a07d-5b1778508c91 method: GET response: proto: HTTP/2.0 @@ -2438,20 +2438,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2828 + content_length: 1895 uncompressed: false - body: '{"backend":{"created_at":"2025-01-24T14:09:21.702361Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3d7e64a8-98c1-4efc-a32d-3b08d464fc63","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cocky-gagarin","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:09:21.702361Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:09:22.576551Z","enable_http3":false,"id":"470560f2-8e56-4757-84a1-2af15613b274","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:09:22.576551Z"}' + body: '{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:42:21.864392Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"}' headers: Content-Length: - - "2828" + - "1895" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:31 GMT + - Tue, 24 Jun 2025 14:42:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2459,10 +2459,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92ecfa8f-88de-498e-82d1-467c0a8b09a8 + - 4da3b05e-dbd3-4b38-bf59-2d2a5d9b5a2e status: 200 OK code: 200 - duration: 122.958709ms + duration: 78.78775ms - id: 50 request: proto: HTTP/1.1 @@ -2478,8 +2478,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c133eb85-4ea4-4f23-9684-191bc3f611b7/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -2487,20 +2487,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 38 + content_length: 1060 uncompressed: false - body: '{"private_network":[],"total_count":0}' + body: '{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:42:21.864392Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"}' headers: Content-Length: - - "38" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:31 GMT + - Tue, 24 Jun 2025 14:42:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2508,10 +2508,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 519e5f97-0c4e-464d-a116-8fee07405fd8 + - 60416f5b-a406-4a47-a45a-bbe434608049 status: 200 OK code: 200 - duration: 68.782666ms + duration: 65.543ms - id: 51 request: proto: HTTP/1.1 @@ -2527,8 +2527,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c133eb85-4ea4-4f23-9684-191bc3f611b7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c method: GET response: proto: HTTP/2.0 @@ -2536,20 +2536,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1062 + content_length: 2878 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[{"created_at":"2025-01-08T14:21:27.406070Z","id":"c8764a78-645f-4136-a3bb-991c0f548009","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:09:30.413806Z","zone":"fr-par-1"}],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"}' + body: '{"backend":{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:42:18.163185Z","enable_access_logs":false,"enable_http3":false,"id":"5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:42:18.163185Z"}' headers: Content-Length: - - "1062" + - "2878" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:31 GMT + - Tue, 24 Jun 2025 14:42:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2557,10 +2557,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9093d2fb-39fa-4189-b9ea-7f8447297c02 + - b608f512-0260-4841-ad90-0907e48a014b status: 200 OK code: 200 - duration: 91.742417ms + duration: 78.621375ms - id: 52 request: proto: HTTP/1.1 @@ -2576,8 +2576,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c133eb85-4ea4-4f23-9684-191bc3f611b7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/0812569a-083f-4b48-8f51-cf060520bf18 method: GET response: proto: HTTP/2.0 @@ -2585,20 +2585,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1062 + content_length: 3303 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":1,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[{"created_at":"2025-01-08T14:21:27.406070Z","id":"c8764a78-645f-4136-a3bb-991c0f548009","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:09:30.413806Z","zone":"fr-par-1"}],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"}' + body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T14:42:18.758746Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:42:18.163185Z","enable_access_logs":false,"enable_http3":false,"id":"5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:42:18.163185Z"},"id":"0812569a-083f-4b48-8f51-cf060520bf18","index":3,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"updated-test-acl-basic","updated_at":"2025-06-24T14:42:21.453445Z"}' headers: Content-Length: - - "1062" + - "3303" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:31 GMT + - Tue, 24 Jun 2025 14:42:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2606,46 +2606,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6841f8e2-5f54-4050-ae77-4ebbec353ca7 + - b002578d-bf2b-4880-848a-1dcea54a0697 status: 200 OK code: 200 - duration: 86.553917ms + duration: 88.633333ms - id: 53 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 275 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"updated-test-acl-basic","action":{"type":"deny","redirect":null},"match":{"ip_subnet":null,"ips_edge_services":true,"http_filter":"acl_http_filter_none","http_filter_value":null,"http_filter_option":null,"invert":false},"index":3,"description":"updated description"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/4defa4b8-875f-4212-916c-6bc94d080893 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/0812569a-083f-4b48-8f51-cf060520bf18 + method: PUT response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 3510 uncompressed: false - body: "" + body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T14:42:18.758746Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:42:18.163185Z","enable_access_logs":false,"enable_http3":false,"id":"5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-24T14:42:23.865317090Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:42:18.163185Z"},"id":"0812569a-083f-4b48-8f51-cf060520bf18","index":3,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":true},"name":"updated-test-acl-basic","updated_at":"2025-06-24T14:42:23.843330345Z"}' headers: + Content-Length: + - "3510" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:32 GMT + - Tue, 24 Jun 2025 14:42:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2653,10 +2657,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b686b10d-10f6-43ef-9b1e-7b7924360b12 - status: 204 No Content - code: 204 - duration: 476.633375ms + - 721a46d2-3aae-406d-9262-8f8b3cf40a39 + status: 200 OK + code: 200 + duration: 348.45ms - id: 54 request: proto: HTTP/1.1 @@ -2672,27 +2676,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/470560f2-8e56-4757-84a1-2af15613b274 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/0812569a-083f-4b48-8f51-cf060520bf18 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 3302 uncompressed: false - body: "" + body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T14:42:18.758746Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:42:18.163185Z","enable_access_logs":false,"enable_http3":false,"id":"5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:42:18.163185Z"},"id":"0812569a-083f-4b48-8f51-cf060520bf18","index":3,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":true},"name":"updated-test-acl-basic","updated_at":"2025-06-24T14:42:23.843330Z"}' headers: + Content-Length: + - "3302" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:33 GMT + - Tue, 24 Jun 2025 14:42:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2700,10 +2706,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 064b8635-d8f8-4708-a9af-938256900a9e - status: 204 No Content - code: 204 - duration: 312.006291ms + - edb282e1-6493-49c6-a29f-91887f6b608d + status: 200 OK + code: 200 + duration: 113.6045ms - id: 55 request: proto: HTTP/1.1 @@ -2719,8 +2725,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c133eb85-4ea4-4f23-9684-191bc3f611b7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/0812569a-083f-4b48-8f51-cf060520bf18 method: GET response: proto: HTTP/2.0 @@ -2728,20 +2734,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 3302 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":0,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[{"created_at":"2025-01-08T14:21:27.406070Z","id":"c8764a78-645f-4136-a3bb-991c0f548009","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-01-24T14:09:32.880770Z","zone":"fr-par-1"}],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"}' + body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T14:42:18.758746Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:42:18.163185Z","enable_access_logs":false,"enable_http3":false,"id":"5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:42:18.163185Z"},"id":"0812569a-083f-4b48-8f51-cf060520bf18","index":3,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":true},"name":"updated-test-acl-basic","updated_at":"2025-06-24T14:42:23.843330Z"}' headers: Content-Length: - - "1064" + - "3302" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:33 GMT + - Tue, 24 Jun 2025 14:42:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2749,10 +2755,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c488675a-4ddf-417e-989e-ab0c072aa726 + - 37144c6e-831b-4bfe-864a-f37716491719 status: 200 OK code: 200 - duration: 133.321875ms + duration: 95.308125ms - id: 56 request: proto: HTTP/1.1 @@ -2768,8 +2774,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c133eb85-4ea4-4f23-9684-191bc3f611b7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/706766e4-feb1-4724-ad81-658465d5a683 method: GET response: proto: HTTP/2.0 @@ -2777,20 +2783,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 320 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":0,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[{"created_at":"2025-01-08T14:21:27.406070Z","id":"c8764a78-645f-4136-a3bb-991c0f548009","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-01-24T14:09:32.880770Z","zone":"fr-par-1"}],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"}' + body: '{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "1064" + - "320" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:33 GMT + - Tue, 24 Jun 2025 14:42:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2798,10 +2804,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9a3afa2-80ee-438d-9b12-fac3cd13aaec + - 33a92697-5ba4-4e17-a207-f26929ad5cad status: 200 OK code: 200 - duration: 120.683958ms + duration: 65.904291ms - id: 57 request: proto: HTTP/1.1 @@ -2817,27 +2823,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/3d7e64a8-98c1-4efc-a32d-3b08d464fc63 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 1060 uncompressed: false - body: "" + body: '{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:42:24.300065Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"}' headers: + Content-Length: + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:33 GMT + - Tue, 24 Jun 2025 14:42:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2845,10 +2853,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b4c9efa9-cd44-45cf-942f-5806a7b2486a - status: 204 No Content - code: 204 - duration: 288.629209ms + - a67d988c-a039-447e-96ef-05445139fbaa + status: 200 OK + code: 200 + duration: 61.941292ms - id: 58 request: proto: HTTP/1.1 @@ -2864,8 +2872,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c133eb85-4ea4-4f23-9684-191bc3f611b7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -2873,20 +2881,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":0,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[{"created_at":"2025-01-08T14:21:27.406070Z","id":"c8764a78-645f-4136-a3bb-991c0f548009","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-01-24T14:09:33.463512Z","zone":"fr-par-1"}],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:42:24.300065Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"}' headers: Content-Length: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:33 GMT + - Tue, 24 Jun 2025 14:42:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2894,10 +2902,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95777d03-3c3d-4df9-8217-100be2016a3a + - c86e4e85-71e7-4753-82ce-2dc760f88878 status: 200 OK code: 200 - duration: 109.223125ms + duration: 67.159166ms - id: 59 request: proto: HTTP/1.1 @@ -2913,8 +2921,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c133eb85-4ea4-4f23-9684-191bc3f611b7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11/private-networks?order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -2922,20 +2930,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 38 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":0,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[{"created_at":"2025-01-08T14:21:27.406070Z","id":"c8764a78-645f-4136-a3bb-991c0f548009","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-01-24T14:09:33.463512Z","zone":"fr-par-1"}],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:12.333642Z","zone":"fr-par-1"}' + body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "1064" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:33 GMT + - Tue, 24 Jun 2025 14:42:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2943,10 +2951,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30ac6657-7eb0-4cf7-ba0c-aad32502533e + - c6ed3ef9-ace7-4adb-99b0-99e123586876 status: 200 OK code: 200 - duration: 129.27925ms + duration: 53.633917ms - id: 60 request: proto: HTTP/1.1 @@ -2962,27 +2970,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c133eb85-4ea4-4f23-9684-191bc3f611b7?release_ip=false - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/cf38f32b-9b7d-4daa-a07d-5b1778508c91 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 1895 uncompressed: false - body: "" + body: '{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:42:24.300065Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"}' headers: + Content-Length: + - "1895" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:34 GMT + - Tue, 24 Jun 2025 14:42:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2990,10 +3000,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6133801a-555f-4b2b-a859-1eb09a6eac84 - status: 204 No Content - code: 204 - duration: 312.379542ms + - acf8bd1c-f99e-4a44-8aa7-39a419e4b457 + status: 200 OK + code: 200 + duration: 68.212792ms - id: 61 request: proto: HTTP/1.1 @@ -3009,8 +3019,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c133eb85-4ea4-4f23-9684-191bc3f611b7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -3018,20 +3028,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1066 + content_length: 1060 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-01-24T14:08:50.813248Z","description":"","frontend_count":0,"id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","instances":[{"created_at":"2025-01-08T14:21:27.406070Z","id":"c8764a78-645f-4136-a3bb-991c0f548009","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:09:34.016692Z","zone":"fr-par-1"}],"ip":[{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":"c133eb85-4ea4-4f23-9684-191bc3f611b7","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"to_delete","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:33.990438Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:42:24.300065Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"}' headers: Content-Length: - - "1066" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:34 GMT + - Tue, 24 Jun 2025 14:42:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3039,10 +3049,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 284c8efb-26ef-413b-a8b6-157a42ec01b0 + - 7c4588ee-9b06-4b8c-9a8d-7f14aee08087 status: 200 OK code: 200 - duration: 89.170458ms + duration: 82.904833ms - id: 62 request: proto: HTTP/1.1 @@ -3058,8 +3068,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c133eb85-4ea4-4f23-9684-191bc3f611b7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c method: GET response: proto: HTTP/2.0 @@ -3067,20 +3077,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 27 + content_length: 2878 uncompressed: false - body: '{"message":"lbs not Found"}' + body: '{"backend":{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:42:18.163185Z","enable_access_logs":false,"enable_http3":false,"id":"5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:42:18.163185Z"}' headers: Content-Length: - - "27" + - "2878" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:04 GMT + - Tue, 24 Jun 2025 14:42:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3088,10 +3098,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31fa9047-b271-467c-95d1-884be8a21c4c - status: 404 Not Found - code: 404 - duration: 21.340042ms + - b3df8281-4dfd-4b58-8bcc-477315bdb83c + status: 200 OK + code: 200 + duration: 107.72825ms - id: 63 request: proto: HTTP/1.1 @@ -3107,8 +3117,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c133eb85-4ea4-4f23-9684-191bc3f611b7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/0812569a-083f-4b48-8f51-cf060520bf18 method: GET response: proto: HTTP/2.0 @@ -3116,20 +3126,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 27 + content_length: 3302 uncompressed: false - body: '{"message":"lbs not Found"}' + body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T14:42:18.758746Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:42:18.163185Z","enable_access_logs":false,"enable_http3":false,"id":"5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:42:18.163185Z"},"id":"0812569a-083f-4b48-8f51-cf060520bf18","index":3,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":true},"name":"updated-test-acl-basic","updated_at":"2025-06-24T14:42:23.843330Z"}' headers: Content-Length: - - "27" + - "3302" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:04 GMT + - Tue, 24 Jun 2025 14:42:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3137,10 +3147,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3abe055-bcdd-451a-8761-daffa1d4115b - status: 404 Not Found - code: 404 - duration: 26.793625ms + - 3748b34f-c64d-4417-b27c-1a5119b9ef63 + status: 200 OK + code: 200 + duration: 117.968875ms - id: 64 request: proto: HTTP/1.1 @@ -3156,8 +3166,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/706766e4-feb1-4724-ad81-658465d5a683 method: GET response: proto: HTTP/2.0 @@ -3165,20 +3175,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 288 + content_length: 320 uncompressed: false - body: '{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "288" + - "320" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:05 GMT + - Tue, 24 Jun 2025 14:42:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3186,10 +3196,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 473dfc67-7290-4f60-9594-5d5c099e304e + - 98444b47-bc56-4160-826e-a85db17de4d0 status: 200 OK code: 200 - duration: 70.06275ms + duration: 42.169416ms - id: 65 request: proto: HTTP/1.1 @@ -3205,8 +3215,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -3214,20 +3224,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 288 + content_length: 1060 uncompressed: false - body: '{"id":"ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d","ip_address":"51.159.11.205","lb_id":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-205.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:42:24.300065Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"}' headers: Content-Length: - - "288" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:05 GMT + - Tue, 24 Jun 2025 14:42:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3235,10 +3245,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf4438c9-d345-4d65-9d83-83eee16a1206 + - c6c17dcb-a1ba-42fe-a4af-df432996a8ec status: 200 OK code: 200 - duration: 63.621916ms + duration: 63.542292ms - id: 66 request: proto: HTTP/1.1 @@ -3254,8 +3264,1864 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/ea6c2ea3-18b0-43e0-8d34-a2bbb9df435d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1060 + uncompressed: false + body: '{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:42:24.300065Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1060" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:42:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a7f87c14-e56c-41d2-82ef-6f3f81d23318 + status: 200 OK + code: 200 + duration: 82.091708ms + - id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11/private-networks?order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 38 + uncompressed: false + body: '{"private_network":[],"total_count":0}' + headers: + Content-Length: + - "38" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:42:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2f8624df-4006-405d-94b9-f9ef23f15048 + status: 200 OK + code: 200 + duration: 48.225292ms + - id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/cf38f32b-9b7d-4daa-a07d-5b1778508c91 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1895 + uncompressed: false + body: '{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:42:24.300065Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"}' + headers: + Content-Length: + - "1895" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:42:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 150ae452-8e38-46bf-a460-657171da56f4 + status: 200 OK + code: 200 + duration: 82.232375ms + - id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1060 + uncompressed: false + body: '{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:42:24.300065Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1060" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:42:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cc026432-1c1c-42b9-9f44-037d618180d6 + status: 200 OK + code: 200 + duration: 74.783333ms + - id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2878 + uncompressed: false + body: '{"backend":{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:42:18.163185Z","enable_access_logs":false,"enable_http3":false,"id":"5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:42:18.163185Z"}' + headers: + Content-Length: + - "2878" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:42:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 560495cc-9654-4b22-83ee-70f53cd5bf58 + status: 200 OK + code: 200 + duration: 91.478625ms + - id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/0812569a-083f-4b48-8f51-cf060520bf18 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 3302 + uncompressed: false + body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T14:42:18.758746Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:42:18.163185Z","enable_access_logs":false,"enable_http3":false,"id":"5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:42:18.163185Z"},"id":"0812569a-083f-4b48-8f51-cf060520bf18","index":3,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":true},"name":"updated-test-acl-basic","updated_at":"2025-06-24T14:42:23.843330Z"}' + headers: + Content-Length: + - "3302" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:42:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c2ad89b0-e0ad-47e8-be9e-27637851cd5f + status: 200 OK + code: 200 + duration: 98.860291ms + - id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 285 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"updated-test-acl-basic","action":{"type":"deny","redirect":null},"match":{"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false,"http_filter":"acl_http_filter_none","http_filter_value":null,"http_filter_option":null,"invert":false},"index":3,"description":"updated description"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/0812569a-083f-4b48-8f51-cf060520bf18 + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 3511 + uncompressed: false + body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T14:42:18.758746Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:42:18.163185Z","enable_access_logs":false,"enable_http3":false,"id":"5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-24T14:42:26.402834802Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:42:18.163185Z"},"id":"0812569a-083f-4b48-8f51-cf060520bf18","index":3,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"updated-test-acl-basic","updated_at":"2025-06-24T14:42:26.371531978Z"}' + headers: + Content-Length: + - "3511" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:42:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - feee3f90-0653-43c9-8e37-9fc4a0009902 + status: 200 OK + code: 200 + duration: 435.745041ms + - id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/0812569a-083f-4b48-8f51-cf060520bf18 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 3303 + uncompressed: false + body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T14:42:18.758746Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:42:18.163185Z","enable_access_logs":false,"enable_http3":false,"id":"5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:42:18.163185Z"},"id":"0812569a-083f-4b48-8f51-cf060520bf18","index":3,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"updated-test-acl-basic","updated_at":"2025-06-24T14:42:26.371532Z"}' + headers: + Content-Length: + - "3303" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:42:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a45a0ff2-1088-429a-954c-c8311f9d8730 + status: 200 OK + code: 200 + duration: 81.5385ms + - id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/0812569a-083f-4b48-8f51-cf060520bf18 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 3303 + uncompressed: false + body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T14:42:18.758746Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:42:18.163185Z","enable_access_logs":false,"enable_http3":false,"id":"5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:42:18.163185Z"},"id":"0812569a-083f-4b48-8f51-cf060520bf18","index":3,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"updated-test-acl-basic","updated_at":"2025-06-24T14:42:26.371532Z"}' + headers: + Content-Length: + - "3303" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:42:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4f669b07-14de-4518-92b7-890417fb83e6 + status: 200 OK + code: 200 + duration: 171.861292ms + - id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/706766e4-feb1-4724-ad81-658465d5a683 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 320 + uncompressed: false + body: '{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + headers: + Content-Length: + - "320" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:42:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 06c1e4f1-b524-4a28-8146-2a119d2c1728 + status: 200 OK + code: 200 + duration: 40.368083ms + - id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1060 + uncompressed: false + body: '{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:42:26.771453Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1060" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:42:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 55a0fb3d-534e-4ec5-b86d-121cd46308f5 + status: 200 OK + code: 200 + duration: 77.227709ms + - id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1060 + uncompressed: false + body: '{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:42:26.771453Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1060" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:42:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ce26d5da-dcee-46f9-8e0c-af72eabc7036 + status: 200 OK + code: 200 + duration: 64.827041ms + - id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11/private-networks?order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 38 + uncompressed: false + body: '{"private_network":[],"total_count":0}' + headers: + Content-Length: + - "38" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:42:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 41d1e0a9-3ed1-4219-8d02-bfe86ee3554b + status: 200 OK + code: 200 + duration: 55.390625ms + - id: 79 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/cf38f32b-9b7d-4daa-a07d-5b1778508c91 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1895 + uncompressed: false + body: '{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:42:26.771453Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"}' + headers: + Content-Length: + - "1895" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:42:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2ae98df3-af6a-4e1a-98c0-e6724c6c0705 + status: 200 OK + code: 200 + duration: 87.453167ms + - id: 80 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1060 + uncompressed: false + body: '{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:42:26.771453Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1060" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:42:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4d31700c-a47c-4082-a4d7-d2230f44d43f + status: 200 OK + code: 200 + duration: 73.472709ms + - id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2878 + uncompressed: false + body: '{"backend":{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:42:18.163185Z","enable_access_logs":false,"enable_http3":false,"id":"5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:42:18.163185Z"}' + headers: + Content-Length: + - "2878" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:42:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2eaa1e12-88c9-45bb-ba6b-702eeb812458 + status: 200 OK + code: 200 + duration: 100.797459ms + - id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/0812569a-083f-4b48-8f51-cf060520bf18 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 3303 + uncompressed: false + body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T14:42:18.758746Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:42:18.163185Z","enable_access_logs":false,"enable_http3":false,"id":"5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:42:18.163185Z"},"id":"0812569a-083f-4b48-8f51-cf060520bf18","index":3,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"updated-test-acl-basic","updated_at":"2025-06-24T14:42:26.371532Z"}' + headers: + Content-Length: + - "3303" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:42:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 24a9f373-13f3-458f-a1e7-9b20ebc5190d + status: 200 OK + code: 200 + duration: 106.173833ms + - id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/706766e4-feb1-4724-ad81-658465d5a683 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 320 + uncompressed: false + body: '{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + headers: + Content-Length: + - "320" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:42:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cf1c6c9f-9e8a-4fd0-950e-37869d504025 + status: 200 OK + code: 200 + duration: 42.1325ms + - id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1060 + uncompressed: false + body: '{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:42:26.771453Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1060" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:42:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 13d6cd0b-94c5-4323-9342-f5bf42a6fd85 + status: 200 OK + code: 200 + duration: 76.123958ms + - id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/cf38f32b-9b7d-4daa-a07d-5b1778508c91 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1895 + uncompressed: false + body: '{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:42:26.771453Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"}' + headers: + Content-Length: + - "1895" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:42:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5b1c2537-4109-434d-ac99-58c43ac91975 + status: 200 OK + code: 200 + duration: 91.852458ms + - id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2878 + uncompressed: false + body: '{"backend":{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:42:18.163185Z","enable_access_logs":false,"enable_http3":false,"id":"5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:42:18.163185Z"}' + headers: + Content-Length: + - "2878" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:42:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c3c6b19d-61c9-404c-af5a-0ee25ccd139e + status: 200 OK + code: 200 + duration: 100.418917ms + - id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1060 + uncompressed: false + body: '{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:42:26.771453Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1060" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:42:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a53cdeee-9157-4f52-a56c-8efa539879fe + status: 200 OK + code: 200 + duration: 83.961167ms + - id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/0812569a-083f-4b48-8f51-cf060520bf18 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 3303 + uncompressed: false + body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T14:42:18.758746Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T14:42:17.394180Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"cf38f32b-9b7d-4daa-a07d-5b1778508c91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-galois","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:42:17.394180Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:42:18.163185Z","enable_access_logs":false,"enable_http3":false,"id":"5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:42:18.163185Z"},"id":"0812569a-083f-4b48-8f51-cf060520bf18","index":3,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"updated-test-acl-basic","updated_at":"2025-06-24T14:42:26.371532Z"}' + headers: + Content-Length: + - "3303" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:42:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 72826ccb-5570-4c99-8cf2-114be3247270 + status: 200 OK + code: 200 + duration: 126.09875ms + - id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11/private-networks?order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 38 + uncompressed: false + body: '{"private_network":[],"total_count":0}' + headers: + Content-Length: + - "38" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:42:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c7a0d72b-3f19-440f-8c64-c09163771302 + status: 200 OK + code: 200 + duration: 61.407084ms + - id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1060 + uncompressed: false + body: '{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":1,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:42:26.771453Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1060" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:42:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a0ad0233-89ae-4825-8a79-3206c4953587 + status: 200 OK + code: 200 + duration: 67.148708ms + - id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/0812569a-083f-4b48-8f51-cf060520bf18 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:42:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 86e773fb-7cff-4980-9014-c24fef905701 + status: 204 No Content + code: 204 + duration: 383.624667ms + - id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:42:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bf2d347b-aeae-46e9-b5e1-71ac4bca6078 + status: 204 No Content + code: 204 + duration: 361.978417ms + - id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1062 + uncompressed: false + body: '{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":0,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-24T14:42:29.056453Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1062" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:42:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - eade0d26-2f92-44bc-9e8a-cfc04c4cbafd + status: 200 OK + code: 200 + duration: 72.112792ms + - id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1060 + uncompressed: false + body: '{"backend_count":1,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":0,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:42:29.352454Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1060" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:42:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8800c685-5611-420f-8c10-14de52ca7533 + status: 200 OK + code: 200 + duration: 83.834625ms + - id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/cf38f32b-9b7d-4daa-a07d-5b1778508c91 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:42:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b7e60fb3-e69d-4767-b4aa-a45784fc176e + status: 204 No Content + code: 204 + duration: 329.423542ms + - id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1062 + uncompressed: false + body: '{"backend_count":0,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":0,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-24T14:42:29.562947Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1062" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:42:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0c46fa5f-a868-4d9d-ae26-97ba0275202b + status: 200 OK + code: 200 + duration: 65.347042ms + - id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1060 + uncompressed: false + body: '{"backend_count":0,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":0,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:42:29.832591Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:41:50.308961Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1060" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:42:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f6d966c0-c002-4719-8db7-5efbfe9bcba5 + status: 200 OK + code: 200 + duration: 80.878333ms + - id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11?release_ip=false + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:42:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 89236811-074c-4d63-b7a7-5f54a7e93841 + status: 204 No Content + code: 204 + duration: 339.375875ms + - id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1064 + uncompressed: false + body: '{"backend_count":0,"created_at":"2025-06-24T14:41:46.546252Z","description":"","frontend_count":0,"id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","instances":[{"created_at":"2025-06-24T14:38:13.064571Z","id":"a64b1ac7-1e22-424e-bef8-819bda679de8","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:42:29.832591Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"5d4774d9-0df5-4adb-8d9a-f99608135c11","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"to_delete","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:42:30.016944Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1064" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:42:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 10a8f398-f33a-43e2-9166-157c8f23c8e3 + status: 200 OK + code: 200 + duration: 70.370042ms + - id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 27 + uncompressed: false + body: '{"message":"lbs not Found"}' + headers: + Content-Length: + - "27" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:43:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9706c158-eb25-461e-af63-7ea370a1a876 + status: 404 Not Found + code: 404 + duration: 50.892208ms + - id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 27 + uncompressed: false + body: '{"message":"lbs not Found"}' + headers: + Content-Length: + - "27" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:43:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6ec94bf6-dc3c-4758-b2cb-7e88e7c47131 + status: 404 Not Found + code: 404 + duration: 21.2245ms + - id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/706766e4-feb1-4724-ad81-658465d5a683 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 286 + uncompressed: false + body: '{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + headers: + Content-Length: + - "286" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:43:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3f26f88b-dcc9-4c1c-a5e3-897ac4a6168a + status: 200 OK + code: 200 + duration: 41.641459ms + - id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/706766e4-feb1-4724-ad81-658465d5a683 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 286 + uncompressed: false + body: '{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + headers: + Content-Length: + - "286" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 14:43:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 83d7cd7a-51a8-4834-ac2d-94d54e6f5390 + status: 200 OK + code: 200 + duration: 48.645125ms + - id: 104 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/706766e4-feb1-4724-ad81-658465d5a683 method: DELETE response: proto: HTTP/2.0 @@ -3272,9 +5138,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:06 GMT + - Tue, 24 Jun 2025 14:43:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3282,7 +5148,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 518565fc-a34a-4767-81b9-96616e52b895 + - 32a70830-2357-4ac1-982c-d88d0f2963ee status: 204 No Content code: 204 - duration: 430.852333ms + duration: 397.377208ms diff --git a/internal/services/lb/testdata/frontend-acl-basic.cassette.yaml b/internal/services/lb/testdata/frontend-acl-basic.cassette.yaml index 6527875e90..a8441e4a24 100644 --- a/internal/services/lb/testdata/frontend-acl-basic.cassette.yaml +++ b/internal/services/lb/testdata/frontend-acl-basic.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_ipv6":false,"tags":[]}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","is_ipv6":false,"tags":[]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips method: POST response: @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 290 + content_length: 286 uncompressed: false - body: '{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "290" + - "286" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:58 GMT + - Tue, 24 Jun 2025 14:38:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 000883ba-defc-4dc5-8626-e4f15eb54af8 + - b849400d-f0f6-4fb5-8628-8c88c65b5930 status: 200 OK code: 200 - duration: 86.947333ms + duration: 223.669208ms - id: 1 request: proto: HTTP/1.1 @@ -67,8 +67,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/e9ea68b2-fe57-4539-bac3-87c8acab4f87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/706766e4-feb1-4724-ad81-658465d5a683 method: GET response: proto: HTTP/2.0 @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 290 + content_length: 286 uncompressed: false - body: '{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "290" + - "286" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:58 GMT + - Tue, 24 Jun 2025 14:38:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a374f6b-9d29-4c3c-a72b-f35370229130 + - 9113b8a6-3e1b-453c-ade8-134d6b93b7b2 status: 200 OK code: 200 - duration: 65.953375ms + duration: 55.227291ms - id: 2 request: proto: HTTP/1.1 @@ -112,13 +112,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-lb-acl","description":"","ip_id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_ids":[],"tags":null,"type":"lb-s","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-lb-acl","description":"","ip_id":"706766e4-feb1-4724-ad81-658465d5a683","ip_ids":[],"tags":null,"type":"lb-s","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs method: POST response: @@ -127,20 +127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 874 + content_length: 870 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-01-24T14:09:58.930191230Z","description":"","frontend_count":0,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"to_create","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:58.930191230Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-06-24T14:38:08.352724170Z","description":"","frontend_count":0,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"to_create","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:08.352724170Z","zone":"fr-par-1"}' headers: Content-Length: - - "874" + - "870" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:59 GMT + - Tue, 24 Jun 2025 14:38:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9fc31b00-a4c0-4e62-99b9-27d3b4f123a0 + - 203c424c-6f4a-4f7b-a389-e380b6dba509 status: 200 OK code: 200 - duration: 304.130208ms + duration: 390.871667ms - id: 3 request: proto: HTTP/1.1 @@ -167,8 +167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5593106e-fe7b-41cb-9833-b041f6df7def + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f5c7d2a-4c6f-4c33-8ec3-1836616e525e method: GET response: proto: HTTP/2.0 @@ -176,20 +176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 868 + content_length: 1065 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":0,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"to_create","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:09:58.930191Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":0,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[{"created_at":"2025-06-24T14:24:33.036019Z","id":"206e815b-6028-4e74-aec4-c31d6efb02fd","ip_address":"","region":"fr-par","status":"unknown","updated_at":"2025-06-24T14:38:08.644715Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"creating","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:08.650606Z","zone":"fr-par-1"}' headers: Content-Length: - - "868" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:59 GMT + - Tue, 24 Jun 2025 14:38:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25b7aeeb-b8ff-4d6d-a955-b5b52fc7e6b9 + - 60c2411a-26d8-473d-aac5-7018e1319ca5 status: 200 OK code: 200 - duration: 101.628833ms + duration: 75.882958ms - id: 4 request: proto: HTTP/1.1 @@ -216,8 +216,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5593106e-fe7b-41cb-9833-b041f6df7def + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f5c7d2a-4c6f-4c33-8ec3-1836616e525e method: GET response: proto: HTTP/2.0 @@ -225,20 +225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":0,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[{"created_at":"2025-01-24T14:09:05.236908Z","id":"53053939-553b-4cda-8170-b09d780e935a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:10:01.084495Z","zone":"fr-par-1"}],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":0,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[{"created_at":"2025-06-24T14:24:33.036019Z","id":"206e815b-6028-4e74-aec4-c31d6efb02fd","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:38:11.048798Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"}' headers: Content-Length: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:29 GMT + - Tue, 24 Jun 2025 14:38:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -246,10 +246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dfa391d1-0215-4397-944b-73fe0cab4545 + - 690f513e-9200-4570-8848-a3a036923b0e status: 200 OK code: 200 - duration: 98.523542ms + duration: 88.728584ms - id: 5 request: proto: HTTP/1.1 @@ -265,8 +265,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5593106e-fe7b-41cb-9833-b041f6df7def + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f5c7d2a-4c6f-4c33-8ec3-1836616e525e method: GET response: proto: HTTP/2.0 @@ -274,20 +274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":0,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[{"created_at":"2025-01-24T14:09:05.236908Z","id":"53053939-553b-4cda-8170-b09d780e935a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:10:01.084495Z","zone":"fr-par-1"}],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":0,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[{"created_at":"2025-06-24T14:24:33.036019Z","id":"206e815b-6028-4e74-aec4-c31d6efb02fd","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:38:11.048798Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"}' headers: Content-Length: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:29 GMT + - Tue, 24 Jun 2025 14:38:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -295,10 +295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3f1f65a-a7c3-4209-8849-79f8a22cd053 + - 2fdbb188-a15a-49b7-98e8-10bc0eb3d722 status: 200 OK code: 200 - duration: 88.184917ms + duration: 105.733333ms - id: 6 request: proto: HTTP/1.1 @@ -314,8 +314,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5593106e-fe7b-41cb-9833-b041f6df7def/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f5c7d2a-4c6f-4c33-8ec3-1836616e525e/private-networks?order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -334,9 +334,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:29 GMT + - Tue, 24 Jun 2025 14:38:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -344,10 +344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96915ed6-1f7b-46f4-ae38-e2e2a320e701 + - 00c1dc7e-4911-4ad6-a62c-c6ea6c3d99ef status: 200 OK code: 200 - duration: 65.977125ms + duration: 54.498667ms - id: 7 request: proto: HTTP/1.1 @@ -363,8 +363,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5593106e-fe7b-41cb-9833-b041f6df7def + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f5c7d2a-4c6f-4c33-8ec3-1836616e525e method: GET response: proto: HTTP/2.0 @@ -372,20 +372,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":0,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[{"created_at":"2025-01-24T14:09:05.236908Z","id":"53053939-553b-4cda-8170-b09d780e935a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:10:01.084495Z","zone":"fr-par-1"}],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":0,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[{"created_at":"2025-06-24T14:24:33.036019Z","id":"206e815b-6028-4e74-aec4-c31d6efb02fd","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:38:11.048798Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"}' headers: Content-Length: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:29 GMT + - Tue, 24 Jun 2025 14:38:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -393,29 +393,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35f64c38-eb9b-424d-9217-160b5f9b649c + - 24c9fa4d-5ceb-4fd2-a003-1fc65f0d050f status: 200 OK code: 200 - duration: 84.77325ms + duration: 69.422292ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 609 + content_length: 607 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-lb-bkd-romantic-allen","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_max_retries":2,"check_send_proxy":false,"transient_check_delay":"0.500000000s","check_delay":60000,"check_timeout":30000},"server_ip":[],"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","ssl_bridging":false,"ignore_ssl_server_verify":false,"max_retries":3,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' + body: '{"name":"tf-lb-bkd-adoring-borg","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_max_retries":2,"check_send_proxy":false,"transient_check_delay":"0.500000000s","check_delay":60000,"check_timeout":30000},"server_ip":[],"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","ssl_bridging":false,"ignore_ssl_server_verify":false,"max_retries":3,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5593106e-fe7b-41cb-9833-b041f6df7def/backends + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f5c7d2a-4c6f-4c33-8ec3-1836616e525e/backends method: POST response: proto: HTTP/2.0 @@ -423,20 +423,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1913 + content_length: 1907 uncompressed: false - body: '{"created_at":"2025-01-24T14:10:29.718249149Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":0,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[{"created_at":"2025-01-24T14:09:05.236908Z","id":"53053939-553b-4cda-8170-b09d780e935a","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-01-24T14:10:29.748434166Z","zone":"fr-par-1"}],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249149Z"}' + body: '{"created_at":"2025-06-24T14:38:39.213311823Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":0,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[{"created_at":"2025-06-24T14:24:33.036019Z","id":"206e815b-6028-4e74-aec4-c31d6efb02fd","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-24T14:38:39.259814643Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213311823Z"}' headers: Content-Length: - - "1913" + - "1907" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:29 GMT + - Tue, 24 Jun 2025 14:38:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,10 +444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62f51777-be9f-4f57-8b2c-b5d7f470c3c4 + - 0a423546-5f05-42cf-83e1-a5e3ec36e4d1 status: 200 OK code: 200 - duration: 382.240458ms + duration: 429.138333ms - id: 9 request: proto: HTTP/1.1 @@ -463,8 +463,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5593106e-fe7b-41cb-9833-b041f6df7def + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f5c7d2a-4c6f-4c33-8ec3-1836616e525e method: GET response: proto: HTTP/2.0 @@ -472,20 +472,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1066 + content_length: 1062 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":0,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[{"created_at":"2025-01-24T14:09:05.236908Z","id":"53053939-553b-4cda-8170-b09d780e935a","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-01-24T14:10:29.748434Z","zone":"fr-par-1"}],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":0,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[{"created_at":"2025-06-24T14:24:33.036019Z","id":"206e815b-6028-4e74-aec4-c31d6efb02fd","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-24T14:38:39.259815Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"}' headers: Content-Length: - - "1066" + - "1062" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:30 GMT + - Tue, 24 Jun 2025 14:38:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -493,10 +493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f67262ec-ab9e-4a35-8035-0f0651407725 + - 933486a6-1e77-40e0-b27b-0c21493048e3 status: 200 OK code: 200 - duration: 85.76625ms + duration: 73.078834ms - id: 10 request: proto: HTTP/1.1 @@ -512,8 +512,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/640e568e-46e8-45bc-b3fb-42a76da43df0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/8a66c455-f88c-4c56-a056-d2e1ead7190a method: GET response: proto: HTTP/2.0 @@ -521,20 +521,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1902 + content_length: 1896 uncompressed: false - body: '{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":0,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[{"created_at":"2025-01-24T14:09:05.236908Z","id":"53053939-553b-4cda-8170-b09d780e935a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:10:30.067530Z","zone":"fr-par-1"}],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"}' + body: '{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":0,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[{"created_at":"2025-06-24T14:24:33.036019Z","id":"206e815b-6028-4e74-aec4-c31d6efb02fd","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:38:39.584060Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"}' headers: Content-Length: - - "1902" + - "1896" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:30 GMT + - Tue, 24 Jun 2025 14:38:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -542,10 +542,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3bc0c36-1934-4723-a7a6-eebb04a1d9b1 + - 64ace842-00f6-4ccb-9c37-4d62f31f4640 status: 200 OK code: 200 - duration: 218.189833ms + duration: 106.066917ms - id: 11 request: proto: HTTP/1.1 @@ -561,8 +561,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5593106e-fe7b-41cb-9833-b041f6df7def + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f5c7d2a-4c6f-4c33-8ec3-1836616e525e method: GET response: proto: HTTP/2.0 @@ -570,20 +570,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":0,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[{"created_at":"2025-01-24T14:09:05.236908Z","id":"53053939-553b-4cda-8170-b09d780e935a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:10:30.067530Z","zone":"fr-par-1"}],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":0,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[{"created_at":"2025-06-24T14:24:33.036019Z","id":"206e815b-6028-4e74-aec4-c31d6efb02fd","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:38:39.584060Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"}' headers: Content-Length: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:30 GMT + - Tue, 24 Jun 2025 14:38:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -591,10 +591,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0151b33e-63dd-4ef1-b5e9-28e3b733ef56 + - 77dcf262-9376-45fb-8d06-5dd1680b132e status: 200 OK code: 200 - duration: 100.296083ms + duration: 71.971167ms - id: 12 request: proto: HTTP/1.1 @@ -610,8 +610,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5593106e-fe7b-41cb-9833-b041f6df7def + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f5c7d2a-4c6f-4c33-8ec3-1836616e525e method: GET response: proto: HTTP/2.0 @@ -619,20 +619,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":0,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[{"created_at":"2025-01-24T14:09:05.236908Z","id":"53053939-553b-4cda-8170-b09d780e935a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:10:30.067530Z","zone":"fr-par-1"}],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":0,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[{"created_at":"2025-06-24T14:24:33.036019Z","id":"206e815b-6028-4e74-aec4-c31d6efb02fd","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:38:39.584060Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"}' headers: Content-Length: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:30 GMT + - Tue, 24 Jun 2025 14:38:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -640,29 +640,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5401a86a-3e6a-4f93-92b4-0b413ac43ff2 + - c0d98089-aa10-4aa4-bb14-0c111ad7e52a status: 200 OK code: 200 - duration: 467.718791ms + duration: 104.448625ms - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 132 + content_length: 185 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-test","inbound_port":80,"backend_id":"640e568e-46e8-45bc-b3fb-42a76da43df0","enable_http3":false,"timeout_client":30000}' + body: '{"name":"tf-test","inbound_port":80,"backend_id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","enable_http3":false,"connection_rate_limit":0,"enable_access_logs":false,"timeout_client":30000}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5593106e-fe7b-41cb-9833-b041f6df7def/frontends + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f5c7d2a-4c6f-4c33-8ec3-1836616e525e/frontends method: POST response: proto: HTTP/2.0 @@ -670,20 +670,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3038 + content_length: 3084 uncompressed: false - body: '{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[{"created_at":"2025-01-24T14:09:05.236908Z","id":"53053939-553b-4cda-8170-b09d780e935a","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-01-24T14:10:31.165418773Z","zone":"fr-par-1"}],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:31.121043Z"}' + body: '{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[{"created_at":"2025-06-24T14:24:33.036019Z","id":"206e815b-6028-4e74-aec4-c31d6efb02fd","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-24T14:38:40.121261467Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:40.066295Z"}' headers: Content-Length: - - "3038" + - "3084" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:31 GMT + - Tue, 24 Jun 2025 14:38:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -691,10 +691,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef9f4742-0b6c-42d8-bc70-7572e6373ce0 + - 94eda6de-3cb1-4172-b41e-6944dbcb5cc7 status: 200 OK code: 200 - duration: 470.656834ms + duration: 494.947833ms - id: 14 request: proto: HTTP/1.1 @@ -710,8 +710,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5593106e-fe7b-41cb-9833-b041f6df7def + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f5c7d2a-4c6f-4c33-8ec3-1836616e525e method: GET response: proto: HTTP/2.0 @@ -719,20 +719,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1066 + content_length: 1062 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[{"created_at":"2025-01-24T14:09:05.236908Z","id":"53053939-553b-4cda-8170-b09d780e935a","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-01-24T14:10:31.165419Z","zone":"fr-par-1"}],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[{"created_at":"2025-06-24T14:24:33.036019Z","id":"206e815b-6028-4e74-aec4-c31d6efb02fd","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-24T14:38:40.121261Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"}' headers: Content-Length: - - "1066" + - "1062" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:31 GMT + - Tue, 24 Jun 2025 14:38:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -740,29 +740,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0f1a9bd-5500-4494-bae1-07f5284ed1a6 + - e8dffad2-8f6e-45ce-b3bc-55dca935a704 status: 200 OK code: 200 - duration: 86.921625ms + duration: 68.508875ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 153 + content_length: 179 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-test","inbound_port":80,"backend_id":"640e568e-46e8-45bc-b3fb-42a76da43df0","certificate_ids":[],"enable_http3":false,"timeout_client":30000}' + body: '{"name":"tf-test","inbound_port":80,"backend_id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","certificate_ids":[],"enable_http3":false,"connection_rate_limit":0,"timeout_client":30000}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/047b318c-ffe3-4579-b6b6-cd635db1dbbf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/82b7189d-fb2a-4f91-95a1-dd49e1f79d7f method: PUT response: proto: HTTP/2.0 @@ -770,20 +770,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3041 + content_length: 3087 uncompressed: false - body: '{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[{"created_at":"2025-01-24T14:09:05.236908Z","id":"53053939-553b-4cda-8170-b09d780e935a","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-01-24T14:10:31.648801930Z","zone":"fr-par-1"}],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:31.628601239Z"}' + body: '{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[{"created_at":"2025-06-24T14:24:33.036019Z","id":"206e815b-6028-4e74-aec4-c31d6efb02fd","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-24T14:38:40.638924985Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:40.613317463Z"}' headers: Content-Length: - - "3041" + - "3087" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:31 GMT + - Tue, 24 Jun 2025 14:38:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -791,10 +791,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7a23fbf-e41a-45ac-b32e-0c04a4c258ba + - 3c6a4518-42fb-4cd8-8f0e-dd293245237a status: 200 OK code: 200 - duration: 427.322667ms + duration: 419.244833ms - id: 16 request: proto: HTTP/1.1 @@ -810,8 +810,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/047b318c-ffe3-4579-b6b6-cd635db1dbbf/acls?order_by=created_at_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/82b7189d-fb2a-4f91-95a1-dd49e1f79d7f/acls?order_by=created_at_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -830,9 +830,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:31 GMT + - Tue, 24 Jun 2025 14:38:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -840,29 +840,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ea48fc5-845f-4205-8067-4237923a0d23 + - 196dc5b2-d1be-4bbf-8473-4ebd5d2b8959 status: 200 OK code: 200 - duration: 111.418292ms + duration: 104.175458ms - id: 17 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 258 + content_length: 284 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"test-acl","action":{"type":"allow","redirect":null},"match":{"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"],"http_filter":"acl_http_filter_none","http_filter_value":[],"http_filter_option":null,"invert":true},"index":1,"description":""}' + body: '{"name":"test-acl","action":{"type":"allow","redirect":null},"match":{"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"],"ips_edge_services":false,"http_filter":"acl_http_filter_none","http_filter_value":[],"http_filter_option":null,"invert":true},"index":1,"description":""}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/047b318c-ffe3-4579-b6b6-cd635db1dbbf/acls + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/82b7189d-fb2a-4f91-95a1-dd49e1f79d7f/acls method: POST response: proto: HTTP/2.0 @@ -870,20 +870,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3239 + content_length: 3311 uncompressed: false - body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:10:32.224207285Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:31.628601Z"},"id":"2e70939a-d890-4b7a-84d0-4209b7000d3f","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"]},"name":"test-acl","updated_at":"2025-01-24T14:10:32.224207285Z"}' + body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:38:41.140303158Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:40.613317Z"},"id":"20d12b8b-acb3-4283-8f3c-73ea98d04bda","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"],"ips_edge_services":false},"name":"test-acl","updated_at":"2025-06-24T14:38:41.140303158Z"}' headers: Content-Length: - - "3239" + - "3311" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:32 GMT + - Tue, 24 Jun 2025 14:38:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -891,29 +891,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a0cb10d-1f0e-4b2c-8017-af460bc1afb8 + - f9a425a1-6e63-4b2f-8b95-d009c1982d9f status: 200 OK code: 200 - duration: 452.56025ms + duration: 356.972875ms - id: 18 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 254 + content_length: 277 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-lb-acl-vigorous-hopper","action":{"type":"allow","redirect":null},"match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"path_begin","http_filter_value":["criteria1","criteria2"],"http_filter_option":null,"invert":true},"index":2,"description":""}' + body: '{"name":"tf-lb-acl-tender-ellis","action":{"type":"allow","redirect":null},"match":{"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false,"http_filter":"path_begin","http_filter_value":["criteria1","criteria2"],"http_filter_option":null,"invert":true},"index":2,"description":""}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/047b318c-ffe3-4579-b6b6-cd635db1dbbf/acls + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/82b7189d-fb2a-4f91-95a1-dd49e1f79d7f/acls method: POST response: proto: HTTP/2.0 @@ -921,20 +921,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3235 + content_length: 3304 uncompressed: false - body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:10:32.590651858Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:31.628601Z"},"id":"3216da16-3b74-479d-9372-abf68dd8fdbf","index":2,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":true,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-vigorous-hopper","updated_at":"2025-01-24T14:10:32.590651858Z"}' + body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:38:41.461699985Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:40.613317Z"},"id":"e66e9217-e257-46d6-a9a9-436b189aca25","index":2,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":true,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"tf-lb-acl-tender-ellis","updated_at":"2025-06-24T14:38:41.461699985Z"}' headers: Content-Length: - - "3235" + - "3304" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:32 GMT + - Tue, 24 Jun 2025 14:38:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -942,29 +942,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b3eea980-ea19-4f2c-9cc9-0eed19f4cdb5 + - 8fd6f885-f656-44b8-a19d-b6f68f796725 status: 200 OK code: 200 - duration: 367.844708ms + duration: 392.35825ms - id: 19 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 252 + content_length: 279 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-lb-acl-silly-newton","action":{"type":"allow","redirect":null},"match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"path_begin","http_filter_value":["criteria1","criteria2"],"http_filter_option":null,"invert":false},"index":3,"description":""}' + body: '{"name":"tf-lb-acl-nifty-germain","action":{"type":"allow","redirect":null},"match":{"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false,"http_filter":"path_begin","http_filter_value":["criteria1","criteria2"],"http_filter_option":null,"invert":false},"index":3,"description":""}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/047b318c-ffe3-4579-b6b6-cd635db1dbbf/acls + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/82b7189d-fb2a-4f91-95a1-dd49e1f79d7f/acls method: POST response: proto: HTTP/2.0 @@ -972,20 +972,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3233 + content_length: 3306 uncompressed: false - body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:10:32.999732149Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:31.628601Z"},"id":"b53f0798-5ac1-4310-90c7-7d309559be1d","index":3,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-silly-newton","updated_at":"2025-01-24T14:10:32.999732149Z"}' + body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:38:41.891887002Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:40.613317Z"},"id":"d2bfd334-58ef-4f40-acb8-d3c99ad35f8c","index":3,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"tf-lb-acl-nifty-germain","updated_at":"2025-06-24T14:38:41.891887002Z"}' headers: Content-Length: - - "3233" + - "3306" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:33 GMT + - Tue, 24 Jun 2025 14:38:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -993,29 +993,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d141fec-b187-4233-9399-c838340aadbc + - 01fedad5-82af-4b62-8b3a-34dcfc7e6e01 status: 200 OK code: 200 - duration: 407.315541ms + duration: 354.840333ms - id: 20 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 243 + content_length: 270 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-lb-acl-priceless-galois","action":{"type":"allow","redirect":null},"match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"acl_http_filter_none","http_filter_value":[],"http_filter_option":null,"invert":false},"index":4,"description":""}' + body: '{"name":"tf-lb-acl-competent-lalande","action":{"type":"allow","redirect":null},"match":{"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false,"http_filter":"acl_http_filter_none","http_filter_value":[],"http_filter_option":null,"invert":false},"index":4,"description":""}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/047b318c-ffe3-4579-b6b6-cd635db1dbbf/acls + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/82b7189d-fb2a-4f91-95a1-dd49e1f79d7f/acls method: POST response: proto: HTTP/2.0 @@ -1023,20 +1023,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3224 + content_length: 3297 uncompressed: false - body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:10:33.394471898Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:31.628601Z"},"id":"76f62374-f039-4117-b8e6-f009b0c09890","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-priceless-galois","updated_at":"2025-01-24T14:10:33.394471898Z"}' + body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:38:42.245381779Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:40.613317Z"},"id":"acc52a4c-2a6d-4e61-91b2-f57cef1c820c","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"tf-lb-acl-competent-lalande","updated_at":"2025-06-24T14:38:42.245381779Z"}' headers: Content-Length: - - "3224" + - "3297" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:33 GMT + - Tue, 24 Jun 2025 14:38:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1044,29 +1044,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4256181-e6f9-4b60-8e16-d94afd43e7b9 + - a33e9469-f4fb-4a89-b3ff-f592078a3a8b status: 200 OK code: 200 - duration: 371.545791ms + duration: 376.845ms - id: 21 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 239 + content_length: 265 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-lb-acl-wizardly-cori","action":{"type":"deny","redirect":null},"match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"acl_http_filter_none","http_filter_value":[],"http_filter_option":null,"invert":false},"index":5,"description":""}' + body: '{"name":"tf-lb-acl-funny-elgamal","action":{"type":"deny","redirect":null},"match":{"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false,"http_filter":"acl_http_filter_none","http_filter_value":[],"http_filter_option":null,"invert":false},"index":5,"description":""}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/047b318c-ffe3-4579-b6b6-cd635db1dbbf/acls + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/82b7189d-fb2a-4f91-95a1-dd49e1f79d7f/acls method: POST response: proto: HTTP/2.0 @@ -1074,20 +1074,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3220 + content_length: 3292 uncompressed: false - body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-01-24T14:10:33.760607633Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:31.628601Z"},"id":"8d4f4899-faa5-44cf-9f32-cd6c54b8d652","index":5,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-wizardly-cori","updated_at":"2025-01-24T14:10:33.760607633Z"}' + body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T14:38:42.624850943Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:40.613317Z"},"id":"ac0bd542-c058-42e7-8bd7-d7c80ddb1914","index":5,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"tf-lb-acl-funny-elgamal","updated_at":"2025-06-24T14:38:42.624850943Z"}' headers: Content-Length: - - "3220" + - "3292" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:33 GMT + - Tue, 24 Jun 2025 14:38:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1095,29 +1095,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 983d2572-b9c5-42ca-b3f1-2c141f3e295d + - 1a060824-43d5-49f1-ad72-54944d3c9c2a status: 200 OK code: 200 - duration: 504.027459ms + duration: 491.703583ms - id: 22 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 254 + content_length: 279 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-lb-acl-focused-lalande","action":{"type":"allow","redirect":null},"match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"http_header_match","http_filter_value":["example.com"],"http_filter_option":"host","invert":false},"index":6,"description":""}' + body: '{"name":"tf-lb-acl-jovial-wescoff","action":{"type":"allow","redirect":null},"match":{"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false,"http_filter":"http_header_match","http_filter_value":["example.com"],"http_filter_option":"host","invert":false},"index":6,"description":""}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/047b318c-ffe3-4579-b6b6-cd635db1dbbf/acls + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/82b7189d-fb2a-4f91-95a1-dd49e1f79d7f/acls method: POST response: proto: HTTP/2.0 @@ -1125,20 +1125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3235 + content_length: 3306 uncompressed: false - body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:10:34.255397889Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:31.628601Z"},"id":"62f68cff-fdcd-4897-889c-4c525ee73934","index":6,"match":{"http_filter":"http_header_match","http_filter_option":"host","http_filter_value":["example.com"],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-focused-lalande","updated_at":"2025-01-24T14:10:34.255397889Z"}' + body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:38:43.139574027Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:40.613317Z"},"id":"d35333a4-e0c6-4e84-ba6a-c0f9c43ec9fb","index":6,"match":{"http_filter":"http_header_match","http_filter_option":"host","http_filter_value":["example.com"],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"tf-lb-acl-jovial-wescoff","updated_at":"2025-06-24T14:38:43.139574027Z"}' headers: Content-Length: - - "3235" + - "3306" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:34 GMT + - Tue, 24 Jun 2025 14:38:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1146,10 +1146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6568f981-b389-431e-91b6-9b141a6a8af3 + - 775f6cdd-8354-49a4-83af-8a595d8088c7 status: 200 OK code: 200 - duration: 396.946041ms + duration: 460.11725ms - id: 23 request: proto: HTTP/1.1 @@ -1165,8 +1165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/047b318c-ffe3-4579-b6b6-cd635db1dbbf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/82b7189d-fb2a-4f91-95a1-dd49e1f79d7f method: GET response: proto: HTTP/2.0 @@ -1174,20 +1174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2833 + content_length: 2879 uncompressed: false - body: '{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:31.628601Z"}' + body: '{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:40.613317Z"}' headers: Content-Length: - - "2833" + - "2879" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:34 GMT + - Tue, 24 Jun 2025 14:38:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1195,10 +1195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b7c87c2-1d43-4539-9501-56311af5b7c2 + - f7fa0cd1-8b87-450c-a9b2-b49389bfd82b status: 200 OK code: 200 - duration: 124.023208ms + duration: 94.760167ms - id: 24 request: proto: HTTP/1.1 @@ -1214,8 +1214,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/047b318c-ffe3-4579-b6b6-cd635db1dbbf/acls?order_by=created_at_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/82b7189d-fb2a-4f91-95a1-dd49e1f79d7f/acls?order_by=created_at_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -1223,20 +1223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19382 + content_length: 19812 uncompressed: false - body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:10:32.224207Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:31.628601Z"},"id":"2e70939a-d890-4b7a-84d0-4209b7000d3f","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"]},"name":"test-acl","updated_at":"2025-01-24T14:10:32.224207Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:10:32.590652Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:31.628601Z"},"id":"3216da16-3b74-479d-9372-abf68dd8fdbf","index":2,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":true,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-vigorous-hopper","updated_at":"2025-01-24T14:10:32.590652Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:10:32.999732Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:31.628601Z"},"id":"b53f0798-5ac1-4310-90c7-7d309559be1d","index":3,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-silly-newton","updated_at":"2025-01-24T14:10:32.999732Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:10:33.394472Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:31.628601Z"},"id":"76f62374-f039-4117-b8e6-f009b0c09890","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-priceless-galois","updated_at":"2025-01-24T14:10:33.394472Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2025-01-24T14:10:33.760608Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:31.628601Z"},"id":"8d4f4899-faa5-44cf-9f32-cd6c54b8d652","index":5,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-wizardly-cori","updated_at":"2025-01-24T14:10:33.760608Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:10:34.255398Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:31.628601Z"},"id":"62f68cff-fdcd-4897-889c-4c525ee73934","index":6,"match":{"http_filter":"http_header_match","http_filter_option":"host","http_filter_value":["example.com"],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-focused-lalande","updated_at":"2025-01-24T14:10:34.255398Z"}],"total_count":6}' + body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:38:41.140303Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:40.613317Z"},"id":"20d12b8b-acb3-4283-8f3c-73ea98d04bda","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"],"ips_edge_services":false},"name":"test-acl","updated_at":"2025-06-24T14:38:41.140303Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:38:41.461700Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:40.613317Z"},"id":"e66e9217-e257-46d6-a9a9-436b189aca25","index":2,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":true,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"tf-lb-acl-tender-ellis","updated_at":"2025-06-24T14:38:41.461700Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:38:41.891887Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:40.613317Z"},"id":"d2bfd334-58ef-4f40-acb8-d3c99ad35f8c","index":3,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"tf-lb-acl-nifty-germain","updated_at":"2025-06-24T14:38:41.891887Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:38:42.245382Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:40.613317Z"},"id":"acc52a4c-2a6d-4e61-91b2-f57cef1c820c","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"tf-lb-acl-competent-lalande","updated_at":"2025-06-24T14:38:42.245382Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T14:38:42.624851Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:40.613317Z"},"id":"ac0bd542-c058-42e7-8bd7-d7c80ddb1914","index":5,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"tf-lb-acl-funny-elgamal","updated_at":"2025-06-24T14:38:42.624851Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:38:43.139574Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:40.613317Z"},"id":"d35333a4-e0c6-4e84-ba6a-c0f9c43ec9fb","index":6,"match":{"http_filter":"http_header_match","http_filter_option":"host","http_filter_value":["example.com"],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"tf-lb-acl-jovial-wescoff","updated_at":"2025-06-24T14:38:43.139574Z"}],"total_count":6}' headers: Content-Length: - - "19382" + - "19812" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:34 GMT + - Tue, 24 Jun 2025 14:38:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1244,10 +1244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b072b891-d3f1-45d0-8214-e047305ec1b5 + - fb754887-b51e-4286-a795-6c36f78376c7 status: 200 OK code: 200 - duration: 176.53875ms + duration: 128.992542ms - id: 25 request: proto: HTTP/1.1 @@ -1263,8 +1263,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/047b318c-ffe3-4579-b6b6-cd635db1dbbf/acls?order_by=created_at_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/82b7189d-fb2a-4f91-95a1-dd49e1f79d7f/acls?order_by=created_at_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -1272,20 +1272,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19382 + content_length: 19812 uncompressed: false - body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:10:32.224207Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:31.628601Z"},"id":"2e70939a-d890-4b7a-84d0-4209b7000d3f","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"]},"name":"test-acl","updated_at":"2025-01-24T14:10:32.224207Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:10:32.590652Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:31.628601Z"},"id":"3216da16-3b74-479d-9372-abf68dd8fdbf","index":2,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":true,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-vigorous-hopper","updated_at":"2025-01-24T14:10:32.590652Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:10:32.999732Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:31.628601Z"},"id":"b53f0798-5ac1-4310-90c7-7d309559be1d","index":3,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-silly-newton","updated_at":"2025-01-24T14:10:32.999732Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:10:33.394472Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:31.628601Z"},"id":"76f62374-f039-4117-b8e6-f009b0c09890","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-priceless-galois","updated_at":"2025-01-24T14:10:33.394472Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2025-01-24T14:10:33.760608Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:31.628601Z"},"id":"8d4f4899-faa5-44cf-9f32-cd6c54b8d652","index":5,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-wizardly-cori","updated_at":"2025-01-24T14:10:33.760608Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:10:34.255398Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:31.628601Z"},"id":"62f68cff-fdcd-4897-889c-4c525ee73934","index":6,"match":{"http_filter":"http_header_match","http_filter_option":"host","http_filter_value":["example.com"],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-focused-lalande","updated_at":"2025-01-24T14:10:34.255398Z"}],"total_count":6}' + body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:38:41.140303Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:40.613317Z"},"id":"20d12b8b-acb3-4283-8f3c-73ea98d04bda","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"],"ips_edge_services":false},"name":"test-acl","updated_at":"2025-06-24T14:38:41.140303Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:38:41.461700Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:40.613317Z"},"id":"e66e9217-e257-46d6-a9a9-436b189aca25","index":2,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":true,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"tf-lb-acl-tender-ellis","updated_at":"2025-06-24T14:38:41.461700Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:38:41.891887Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:40.613317Z"},"id":"d2bfd334-58ef-4f40-acb8-d3c99ad35f8c","index":3,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"tf-lb-acl-nifty-germain","updated_at":"2025-06-24T14:38:41.891887Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:38:42.245382Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:40.613317Z"},"id":"acc52a4c-2a6d-4e61-91b2-f57cef1c820c","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"tf-lb-acl-competent-lalande","updated_at":"2025-06-24T14:38:42.245382Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T14:38:42.624851Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:40.613317Z"},"id":"ac0bd542-c058-42e7-8bd7-d7c80ddb1914","index":5,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"tf-lb-acl-funny-elgamal","updated_at":"2025-06-24T14:38:42.624851Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:38:43.139574Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:40.613317Z"},"id":"d35333a4-e0c6-4e84-ba6a-c0f9c43ec9fb","index":6,"match":{"http_filter":"http_header_match","http_filter_option":"host","http_filter_value":["example.com"],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"tf-lb-acl-jovial-wescoff","updated_at":"2025-06-24T14:38:43.139574Z"}],"total_count":6}' headers: Content-Length: - - "19382" + - "19812" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:35 GMT + - Tue, 24 Jun 2025 14:38:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1293,10 +1293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2423e6c-6526-42fe-8395-fb27ebf3fba0 + - ef25f36d-89a5-4ff7-9975-6f995219d007 status: 200 OK code: 200 - duration: 148.30825ms + duration: 176.102ms - id: 26 request: proto: HTTP/1.1 @@ -1312,8 +1312,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/e9ea68b2-fe57-4539-bac3-87c8acab4f87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/706766e4-feb1-4724-ad81-658465d5a683 method: GET response: proto: HTTP/2.0 @@ -1321,20 +1321,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 324 + content_length: 320 uncompressed: false - body: '{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "324" + - "320" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:35 GMT + - Tue, 24 Jun 2025 14:38:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1342,10 +1342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1b5060d-7ac2-4188-9116-c60788fecd1b + - 95721f57-0cae-4260-aad5-bc7fd5b11946 status: 200 OK code: 200 - duration: 55.192833ms + duration: 43.6145ms - id: 27 request: proto: HTTP/1.1 @@ -1361,8 +1361,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5593106e-fe7b-41cb-9833-b041f6df7def + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f5c7d2a-4c6f-4c33-8ec3-1836616e525e method: GET response: proto: HTTP/2.0 @@ -1370,20 +1370,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[{"created_at":"2025-01-24T14:09:05.236908Z","id":"53053939-553b-4cda-8170-b09d780e935a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:10:34.699953Z","zone":"fr-par-1"}],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[{"created_at":"2025-06-24T14:24:33.036019Z","id":"206e815b-6028-4e74-aec4-c31d6efb02fd","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:38:43.598380Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"}' headers: Content-Length: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:35 GMT + - Tue, 24 Jun 2025 14:38:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1391,10 +1391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 441b2eb6-af56-467e-8f7b-dc2ffc4517c0 + - 435fab8c-181b-4343-a978-3b60f97ee7b7 status: 200 OK code: 200 - duration: 91.954834ms + duration: 64.801958ms - id: 28 request: proto: HTTP/1.1 @@ -1410,8 +1410,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5593106e-fe7b-41cb-9833-b041f6df7def + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f5c7d2a-4c6f-4c33-8ec3-1836616e525e method: GET response: proto: HTTP/2.0 @@ -1419,20 +1419,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[{"created_at":"2025-01-24T14:09:05.236908Z","id":"53053939-553b-4cda-8170-b09d780e935a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:10:34.699953Z","zone":"fr-par-1"}],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[{"created_at":"2025-06-24T14:24:33.036019Z","id":"206e815b-6028-4e74-aec4-c31d6efb02fd","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:38:43.598380Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"}' headers: Content-Length: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:35 GMT + - Tue, 24 Jun 2025 14:38:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1440,10 +1440,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 463c5b4f-4172-4aa9-b274-c82bc0c477ba + - 7fbd548f-1718-4979-87c8-8f9869c6cc64 status: 200 OK code: 200 - duration: 97.229375ms + duration: 55.711666ms - id: 29 request: proto: HTTP/1.1 @@ -1459,8 +1459,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5593106e-fe7b-41cb-9833-b041f6df7def/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f5c7d2a-4c6f-4c33-8ec3-1836616e525e/private-networks?order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -1479,9 +1479,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:36 GMT + - Tue, 24 Jun 2025 14:38:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1489,10 +1489,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c9c464f-ae4c-4757-bd4c-09ac9e323752 + - dab6531f-d898-42c0-95e4-485871158ee0 status: 200 OK code: 200 - duration: 65.979375ms + duration: 50.510792ms - id: 30 request: proto: HTTP/1.1 @@ -1508,8 +1508,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/640e568e-46e8-45bc-b3fb-42a76da43df0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/8a66c455-f88c-4c56-a056-d2e1ead7190a method: GET response: proto: HTTP/2.0 @@ -1517,20 +1517,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1902 + content_length: 1896 uncompressed: false - body: '{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[{"created_at":"2025-01-24T14:09:05.236908Z","id":"53053939-553b-4cda-8170-b09d780e935a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:10:34.699953Z","zone":"fr-par-1"}],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"}' + body: '{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[{"created_at":"2025-06-24T14:24:33.036019Z","id":"206e815b-6028-4e74-aec4-c31d6efb02fd","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:38:43.598380Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"}' headers: Content-Length: - - "1902" + - "1896" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:36 GMT + - Tue, 24 Jun 2025 14:38:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1538,10 +1538,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14fbed79-f96a-4dc3-88a1-5d0554663495 + - 3e65175c-f1ff-4e6f-ac9f-8b2b7b6aa804 status: 200 OK code: 200 - duration: 90.48875ms + duration: 89.155875ms - id: 31 request: proto: HTTP/1.1 @@ -1557,8 +1557,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5593106e-fe7b-41cb-9833-b041f6df7def + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f5c7d2a-4c6f-4c33-8ec3-1836616e525e method: GET response: proto: HTTP/2.0 @@ -1566,20 +1566,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[{"created_at":"2025-01-24T14:09:05.236908Z","id":"53053939-553b-4cda-8170-b09d780e935a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:10:34.699953Z","zone":"fr-par-1"}],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[{"created_at":"2025-06-24T14:24:33.036019Z","id":"206e815b-6028-4e74-aec4-c31d6efb02fd","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:38:43.598380Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"}' headers: Content-Length: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:36 GMT + - Tue, 24 Jun 2025 14:38:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1587,10 +1587,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52b53334-900e-4bf4-8928-be9c92829ebc + - 6f1b6523-4c73-40ed-bc2d-dfc6b3b44f7e status: 200 OK code: 200 - duration: 100.745125ms + duration: 73.992ms - id: 32 request: proto: HTTP/1.1 @@ -1606,8 +1606,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/047b318c-ffe3-4579-b6b6-cd635db1dbbf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/82b7189d-fb2a-4f91-95a1-dd49e1f79d7f method: GET response: proto: HTTP/2.0 @@ -1615,20 +1615,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2833 + content_length: 2879 uncompressed: false - body: '{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:31.628601Z"}' + body: '{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:40.613317Z"}' headers: Content-Length: - - "2833" + - "2879" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:36 GMT + - Tue, 24 Jun 2025 14:38:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1636,10 +1636,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41099660-6f8d-4fea-a01f-e9f490440bea + - c6c38e46-7abf-4015-9c42-242e63a99fcd status: 200 OK code: 200 - duration: 137.642875ms + duration: 105.391208ms - id: 33 request: proto: HTTP/1.1 @@ -1655,8 +1655,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/047b318c-ffe3-4579-b6b6-cd635db1dbbf/acls?order_by=created_at_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/82b7189d-fb2a-4f91-95a1-dd49e1f79d7f/acls?order_by=created_at_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -1664,20 +1664,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19382 + content_length: 19812 uncompressed: false - body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:10:32.224207Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:31.628601Z"},"id":"2e70939a-d890-4b7a-84d0-4209b7000d3f","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"]},"name":"test-acl","updated_at":"2025-01-24T14:10:32.224207Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:10:32.590652Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:31.628601Z"},"id":"3216da16-3b74-479d-9372-abf68dd8fdbf","index":2,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":true,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-vigorous-hopper","updated_at":"2025-01-24T14:10:32.590652Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:10:32.999732Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:31.628601Z"},"id":"b53f0798-5ac1-4310-90c7-7d309559be1d","index":3,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-silly-newton","updated_at":"2025-01-24T14:10:32.999732Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:10:33.394472Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:31.628601Z"},"id":"76f62374-f039-4117-b8e6-f009b0c09890","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-priceless-galois","updated_at":"2025-01-24T14:10:33.394472Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2025-01-24T14:10:33.760608Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:31.628601Z"},"id":"8d4f4899-faa5-44cf-9f32-cd6c54b8d652","index":5,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-wizardly-cori","updated_at":"2025-01-24T14:10:33.760608Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:10:34.255398Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:31.628601Z"},"id":"62f68cff-fdcd-4897-889c-4c525ee73934","index":6,"match":{"http_filter":"http_header_match","http_filter_option":"host","http_filter_value":["example.com"],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-focused-lalande","updated_at":"2025-01-24T14:10:34.255398Z"}],"total_count":6}' + body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:38:41.140303Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:40.613317Z"},"id":"20d12b8b-acb3-4283-8f3c-73ea98d04bda","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"],"ips_edge_services":false},"name":"test-acl","updated_at":"2025-06-24T14:38:41.140303Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:38:41.461700Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:40.613317Z"},"id":"e66e9217-e257-46d6-a9a9-436b189aca25","index":2,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":true,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"tf-lb-acl-tender-ellis","updated_at":"2025-06-24T14:38:41.461700Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:38:41.891887Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:40.613317Z"},"id":"d2bfd334-58ef-4f40-acb8-d3c99ad35f8c","index":3,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"tf-lb-acl-nifty-germain","updated_at":"2025-06-24T14:38:41.891887Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:38:42.245382Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:40.613317Z"},"id":"acc52a4c-2a6d-4e61-91b2-f57cef1c820c","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"tf-lb-acl-competent-lalande","updated_at":"2025-06-24T14:38:42.245382Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T14:38:42.624851Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:40.613317Z"},"id":"ac0bd542-c058-42e7-8bd7-d7c80ddb1914","index":5,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"tf-lb-acl-funny-elgamal","updated_at":"2025-06-24T14:38:42.624851Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:38:43.139574Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:40.613317Z"},"id":"d35333a4-e0c6-4e84-ba6a-c0f9c43ec9fb","index":6,"match":{"http_filter":"http_header_match","http_filter_option":"host","http_filter_value":["example.com"],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"tf-lb-acl-jovial-wescoff","updated_at":"2025-06-24T14:38:43.139574Z"}],"total_count":6}' headers: Content-Length: - - "19382" + - "19812" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:36 GMT + - Tue, 24 Jun 2025 14:38:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1685,10 +1685,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a1030cb5-5dcb-4619-9d11-9cec7f14267a + - a82ea869-0a57-4b50-a999-ff839daafc6c status: 200 OK code: 200 - duration: 169.162083ms + duration: 164.126792ms - id: 34 request: proto: HTTP/1.1 @@ -1704,8 +1704,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/e9ea68b2-fe57-4539-bac3-87c8acab4f87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/706766e4-feb1-4724-ad81-658465d5a683 method: GET response: proto: HTTP/2.0 @@ -1713,20 +1713,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 324 + content_length: 320 uncompressed: false - body: '{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "324" + - "320" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:37 GMT + - Tue, 24 Jun 2025 14:38:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1734,10 +1734,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e2fb9bd-eb4f-463e-a8ec-efdfa6dd3110 + - 158722ec-85cd-4cf9-8192-852dc71f37f6 status: 200 OK code: 200 - duration: 63.235667ms + duration: 51.146917ms - id: 35 request: proto: HTTP/1.1 @@ -1753,8 +1753,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5593106e-fe7b-41cb-9833-b041f6df7def + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f5c7d2a-4c6f-4c33-8ec3-1836616e525e method: GET response: proto: HTTP/2.0 @@ -1762,20 +1762,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[{"created_at":"2025-01-24T14:09:05.236908Z","id":"53053939-553b-4cda-8170-b09d780e935a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:10:34.699953Z","zone":"fr-par-1"}],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[{"created_at":"2025-06-24T14:24:33.036019Z","id":"206e815b-6028-4e74-aec4-c31d6efb02fd","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:38:43.598380Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"}' headers: Content-Length: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:37 GMT + - Tue, 24 Jun 2025 14:38:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1783,10 +1783,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36e350cf-0152-4499-8c5d-36ca9b2e8f1e + - 1d61b692-10eb-4a40-bb30-f4147e52284f status: 200 OK code: 200 - duration: 76.296625ms + duration: 73.436666ms - id: 36 request: proto: HTTP/1.1 @@ -1802,8 +1802,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5593106e-fe7b-41cb-9833-b041f6df7def + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f5c7d2a-4c6f-4c33-8ec3-1836616e525e method: GET response: proto: HTTP/2.0 @@ -1811,20 +1811,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[{"created_at":"2025-01-24T14:09:05.236908Z","id":"53053939-553b-4cda-8170-b09d780e935a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:10:34.699953Z","zone":"fr-par-1"}],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[{"created_at":"2025-06-24T14:24:33.036019Z","id":"206e815b-6028-4e74-aec4-c31d6efb02fd","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:38:43.598380Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"}' headers: Content-Length: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:37 GMT + - Tue, 24 Jun 2025 14:38:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1832,10 +1832,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 044fba31-a1e9-4890-946c-a1f12b1f4fa5 + - 846df7fd-c593-4113-b128-7aa5ef31bae8 status: 200 OK code: 200 - duration: 107.200459ms + duration: 62.751667ms - id: 37 request: proto: HTTP/1.1 @@ -1851,8 +1851,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5593106e-fe7b-41cb-9833-b041f6df7def/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f5c7d2a-4c6f-4c33-8ec3-1836616e525e/private-networks?order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -1871,9 +1871,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:37 GMT + - Tue, 24 Jun 2025 14:38:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1881,10 +1881,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3dbb327f-c465-468e-bed5-7fb6651b189c + - 808aa503-0342-4ca8-a141-54917097a696 status: 200 OK code: 200 - duration: 68.437958ms + duration: 52.957541ms - id: 38 request: proto: HTTP/1.1 @@ -1900,8 +1900,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/640e568e-46e8-45bc-b3fb-42a76da43df0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/8a66c455-f88c-4c56-a056-d2e1ead7190a method: GET response: proto: HTTP/2.0 @@ -1909,20 +1909,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1902 + content_length: 1896 uncompressed: false - body: '{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[{"created_at":"2025-01-24T14:09:05.236908Z","id":"53053939-553b-4cda-8170-b09d780e935a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:10:34.699953Z","zone":"fr-par-1"}],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"}' + body: '{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[{"created_at":"2025-06-24T14:24:33.036019Z","id":"206e815b-6028-4e74-aec4-c31d6efb02fd","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:38:43.598380Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"}' headers: Content-Length: - - "1902" + - "1896" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:37 GMT + - Tue, 24 Jun 2025 14:38:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1930,10 +1930,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4de2a12-a7ec-4f0f-b5ef-ce4f3179ffe7 + - 0f56d112-f39f-49a5-b111-af51a41b553f status: 200 OK code: 200 - duration: 139.956125ms + duration: 84.892959ms - id: 39 request: proto: HTTP/1.1 @@ -1949,8 +1949,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5593106e-fe7b-41cb-9833-b041f6df7def + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f5c7d2a-4c6f-4c33-8ec3-1836616e525e method: GET response: proto: HTTP/2.0 @@ -1958,20 +1958,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[{"created_at":"2025-01-24T14:09:05.236908Z","id":"53053939-553b-4cda-8170-b09d780e935a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:10:34.699953Z","zone":"fr-par-1"}],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[{"created_at":"2025-06-24T14:24:33.036019Z","id":"206e815b-6028-4e74-aec4-c31d6efb02fd","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:38:43.598380Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"}' headers: Content-Length: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:37 GMT + - Tue, 24 Jun 2025 14:38:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1979,10 +1979,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a99a83e5-8e92-4a30-84d2-f60f6c082559 + - 3f58c3c1-15e6-43fa-9208-6f3454d1dcde status: 200 OK code: 200 - duration: 90.055917ms + duration: 61.69275ms - id: 40 request: proto: HTTP/1.1 @@ -1998,8 +1998,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/047b318c-ffe3-4579-b6b6-cd635db1dbbf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/82b7189d-fb2a-4f91-95a1-dd49e1f79d7f method: GET response: proto: HTTP/2.0 @@ -2007,20 +2007,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2833 + content_length: 2879 uncompressed: false - body: '{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:31.628601Z"}' + body: '{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:40.613317Z"}' headers: Content-Length: - - "2833" + - "2879" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:37 GMT + - Tue, 24 Jun 2025 14:38:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2028,10 +2028,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6caeb24-ed9f-4f31-bafa-b7ad955ead1d + - 091616e0-524a-4f99-a565-6cad2139bc86 status: 200 OK code: 200 - duration: 108.543458ms + duration: 96.365042ms - id: 41 request: proto: HTTP/1.1 @@ -2047,8 +2047,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/047b318c-ffe3-4579-b6b6-cd635db1dbbf/acls?order_by=created_at_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/82b7189d-fb2a-4f91-95a1-dd49e1f79d7f/acls?order_by=created_at_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -2056,20 +2056,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19382 + content_length: 19812 uncompressed: false - body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:10:32.224207Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:31.628601Z"},"id":"2e70939a-d890-4b7a-84d0-4209b7000d3f","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"]},"name":"test-acl","updated_at":"2025-01-24T14:10:32.224207Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:10:32.590652Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:31.628601Z"},"id":"3216da16-3b74-479d-9372-abf68dd8fdbf","index":2,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":true,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-vigorous-hopper","updated_at":"2025-01-24T14:10:32.590652Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:10:32.999732Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:31.628601Z"},"id":"b53f0798-5ac1-4310-90c7-7d309559be1d","index":3,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-silly-newton","updated_at":"2025-01-24T14:10:32.999732Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:10:33.394472Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:31.628601Z"},"id":"76f62374-f039-4117-b8e6-f009b0c09890","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-priceless-galois","updated_at":"2025-01-24T14:10:33.394472Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2025-01-24T14:10:33.760608Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:31.628601Z"},"id":"8d4f4899-faa5-44cf-9f32-cd6c54b8d652","index":5,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-wizardly-cori","updated_at":"2025-01-24T14:10:33.760608Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:10:34.255398Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:31.628601Z"},"id":"62f68cff-fdcd-4897-889c-4c525ee73934","index":6,"match":{"http_filter":"http_header_match","http_filter_option":"host","http_filter_value":["example.com"],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-focused-lalande","updated_at":"2025-01-24T14:10:34.255398Z"}],"total_count":6}' + body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:38:41.140303Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:40.613317Z"},"id":"20d12b8b-acb3-4283-8f3c-73ea98d04bda","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"],"ips_edge_services":false},"name":"test-acl","updated_at":"2025-06-24T14:38:41.140303Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:38:41.461700Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:40.613317Z"},"id":"e66e9217-e257-46d6-a9a9-436b189aca25","index":2,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":true,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"tf-lb-acl-tender-ellis","updated_at":"2025-06-24T14:38:41.461700Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:38:41.891887Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:40.613317Z"},"id":"d2bfd334-58ef-4f40-acb8-d3c99ad35f8c","index":3,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"tf-lb-acl-nifty-germain","updated_at":"2025-06-24T14:38:41.891887Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:38:42.245382Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:40.613317Z"},"id":"acc52a4c-2a6d-4e61-91b2-f57cef1c820c","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"tf-lb-acl-competent-lalande","updated_at":"2025-06-24T14:38:42.245382Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T14:38:42.624851Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:40.613317Z"},"id":"ac0bd542-c058-42e7-8bd7-d7c80ddb1914","index":5,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"tf-lb-acl-funny-elgamal","updated_at":"2025-06-24T14:38:42.624851Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:38:43.139574Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:40.613317Z"},"id":"d35333a4-e0c6-4e84-ba6a-c0f9c43ec9fb","index":6,"match":{"http_filter":"http_header_match","http_filter_option":"host","http_filter_value":["example.com"],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"tf-lb-acl-jovial-wescoff","updated_at":"2025-06-24T14:38:43.139574Z"}],"total_count":6}' headers: Content-Length: - - "19382" + - "19812" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:38 GMT + - Tue, 24 Jun 2025 14:38:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2077,10 +2077,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4fe98f09-672e-4fab-a23b-f150ef2f08f3 + - 39263099-e95a-4b3b-b259-2fd952a2c27e status: 200 OK code: 200 - duration: 138.787334ms + duration: 153.779708ms - id: 42 request: proto: HTTP/1.1 @@ -2096,8 +2096,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5593106e-fe7b-41cb-9833-b041f6df7def + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f5c7d2a-4c6f-4c33-8ec3-1836616e525e method: GET response: proto: HTTP/2.0 @@ -2105,20 +2105,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[{"created_at":"2025-01-24T14:09:05.236908Z","id":"53053939-553b-4cda-8170-b09d780e935a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:10:34.699953Z","zone":"fr-par-1"}],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[{"created_at":"2025-06-24T14:24:33.036019Z","id":"206e815b-6028-4e74-aec4-c31d6efb02fd","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:38:43.598380Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"}' headers: Content-Length: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:39 GMT + - Tue, 24 Jun 2025 14:38:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2126,29 +2126,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53d78016-5878-4e62-9cfb-e944009e5d2d + - 7d99d0db-ad3d-4f1e-9707-62dbe6d9100a status: 200 OK code: 200 - duration: 88.199209ms + duration: 65.840625ms - id: 43 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 153 + content_length: 179 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-test","inbound_port":80,"backend_id":"640e568e-46e8-45bc-b3fb-42a76da43df0","certificate_ids":[],"enable_http3":false,"timeout_client":30000}' + body: '{"name":"tf-test","inbound_port":80,"backend_id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","certificate_ids":[],"enable_http3":false,"connection_rate_limit":0,"timeout_client":30000}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/047b318c-ffe3-4579-b6b6-cd635db1dbbf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/82b7189d-fb2a-4f91-95a1-dd49e1f79d7f method: PUT response: proto: HTTP/2.0 @@ -2156,20 +2156,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3041 + content_length: 3087 uncompressed: false - body: '{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[{"created_at":"2025-01-24T14:09:05.236908Z","id":"53053939-553b-4cda-8170-b09d780e935a","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-01-24T14:10:39.349514194Z","zone":"fr-par-1"}],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:39.329100113Z"}' + body: '{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[{"created_at":"2025-06-24T14:24:33.036019Z","id":"206e815b-6028-4e74-aec4-c31d6efb02fd","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-24T14:38:46.108681629Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:46.089252735Z"}' headers: Content-Length: - - "3041" + - "3087" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:39 GMT + - Tue, 24 Jun 2025 14:38:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2177,10 +2177,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a6c205b-946b-416b-8a3c-b7e0adce24f1 + - 968ebc0c-a76b-4c98-9629-c6bb3f7f1f5a status: 200 OK code: 200 - duration: 495.611375ms + duration: 448.848125ms - id: 44 request: proto: HTTP/1.1 @@ -2196,8 +2196,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/047b318c-ffe3-4579-b6b6-cd635db1dbbf/acls?order_by=created_at_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/82b7189d-fb2a-4f91-95a1-dd49e1f79d7f/acls?order_by=created_at_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -2205,20 +2205,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19382 + content_length: 19812 uncompressed: false - body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:10:32.224207Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:39.329100Z"},"id":"2e70939a-d890-4b7a-84d0-4209b7000d3f","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"]},"name":"test-acl","updated_at":"2025-01-24T14:10:32.224207Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:10:32.590652Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:39.329100Z"},"id":"3216da16-3b74-479d-9372-abf68dd8fdbf","index":2,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":true,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-vigorous-hopper","updated_at":"2025-01-24T14:10:32.590652Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:10:32.999732Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:39.329100Z"},"id":"b53f0798-5ac1-4310-90c7-7d309559be1d","index":3,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-silly-newton","updated_at":"2025-01-24T14:10:32.999732Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:10:33.394472Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:39.329100Z"},"id":"76f62374-f039-4117-b8e6-f009b0c09890","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-priceless-galois","updated_at":"2025-01-24T14:10:33.394472Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2025-01-24T14:10:33.760608Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:39.329100Z"},"id":"8d4f4899-faa5-44cf-9f32-cd6c54b8d652","index":5,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-wizardly-cori","updated_at":"2025-01-24T14:10:33.760608Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:10:34.255398Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:39.329100Z"},"id":"62f68cff-fdcd-4897-889c-4c525ee73934","index":6,"match":{"http_filter":"http_header_match","http_filter_option":"host","http_filter_value":["example.com"],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-focused-lalande","updated_at":"2025-01-24T14:10:34.255398Z"}],"total_count":6}' + body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:38:41.140303Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:46.089253Z"},"id":"20d12b8b-acb3-4283-8f3c-73ea98d04bda","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"],"ips_edge_services":false},"name":"test-acl","updated_at":"2025-06-24T14:38:41.140303Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:38:41.461700Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:46.089253Z"},"id":"e66e9217-e257-46d6-a9a9-436b189aca25","index":2,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":true,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"tf-lb-acl-tender-ellis","updated_at":"2025-06-24T14:38:41.461700Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:38:41.891887Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:46.089253Z"},"id":"d2bfd334-58ef-4f40-acb8-d3c99ad35f8c","index":3,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"tf-lb-acl-nifty-germain","updated_at":"2025-06-24T14:38:41.891887Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:38:42.245382Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:46.089253Z"},"id":"acc52a4c-2a6d-4e61-91b2-f57cef1c820c","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"tf-lb-acl-competent-lalande","updated_at":"2025-06-24T14:38:42.245382Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T14:38:42.624851Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:46.089253Z"},"id":"ac0bd542-c058-42e7-8bd7-d7c80ddb1914","index":5,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"tf-lb-acl-funny-elgamal","updated_at":"2025-06-24T14:38:42.624851Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:38:43.139574Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:46.089253Z"},"id":"d35333a4-e0c6-4e84-ba6a-c0f9c43ec9fb","index":6,"match":{"http_filter":"http_header_match","http_filter_option":"host","http_filter_value":["example.com"],"invert":false,"ip_subnet":["0.0.0.0/0"],"ips_edge_services":false},"name":"tf-lb-acl-jovial-wescoff","updated_at":"2025-06-24T14:38:43.139574Z"}],"total_count":6}' headers: Content-Length: - - "19382" + - "19812" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:39 GMT + - Tue, 24 Jun 2025 14:38:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2226,29 +2226,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01d3f920-3455-40a2-8cbb-adc8b4873691 + - 5bf4f2aa-9978-427a-a79b-412fbc27a644 status: 200 OK code: 200 - duration: 154.353125ms + duration: 137.818292ms - id: 45 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 209 + content_length: 235 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"test-acl","action":{"type":"allow","redirect":null},"match":{"ip_subnet":["10.0.0.10"],"http_filter":"path_begin","http_filter_value":["foo","bar"],"http_filter_option":null,"invert":false},"index":1}' + body: '{"name":"test-acl","action":{"type":"allow","redirect":null},"match":{"ip_subnet":["10.0.0.10"],"ips_edge_services":false,"http_filter":"path_begin","http_filter_value":["foo","bar"],"http_filter_option":null,"invert":false},"index":1}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/2e70939a-d890-4b7a-84d0-4209b7000d3f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/20d12b8b-acb3-4283-8f3c-73ea98d04bda method: PUT response: proto: HTTP/2.0 @@ -2256,20 +2256,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3409 + content_length: 3481 uncompressed: false - body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:10:32.224207Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[{"created_at":"2025-01-24T14:09:05.236908Z","id":"53053939-553b-4cda-8170-b09d780e935a","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-01-24T14:10:39.980841924Z","zone":"fr-par-1"}],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:39.329100Z"},"id":"2e70939a-d890-4b7a-84d0-4209b7000d3f","index":1,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["foo","bar"],"invert":false,"ip_subnet":["10.0.0.10"]},"name":"test-acl","updated_at":"2025-01-24T14:10:39.931159942Z"}' + body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:38:41.140303Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[{"created_at":"2025-06-24T14:24:33.036019Z","id":"206e815b-6028-4e74-aec4-c31d6efb02fd","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-24T14:38:46.621699277Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:46.089253Z"},"id":"20d12b8b-acb3-4283-8f3c-73ea98d04bda","index":1,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["foo","bar"],"invert":false,"ip_subnet":["10.0.0.10"],"ips_edge_services":false},"name":"test-acl","updated_at":"2025-06-24T14:38:46.608451341Z"}' headers: Content-Length: - - "3409" + - "3481" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:40 GMT + - Tue, 24 Jun 2025 14:38:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2277,10 +2277,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1eaff76e-c2d6-48cf-83d7-20251ca33c14 + - 9d84eced-3996-461b-bc50-f55a5f486842 status: 200 OK code: 200 - duration: 376.75975ms + duration: 303.260042ms - id: 46 request: proto: HTTP/1.1 @@ -2296,8 +2296,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/76f62374-f039-4117-b8e6-f009b0c09890 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/e66e9217-e257-46d6-a9a9-436b189aca25 method: DELETE response: proto: HTTP/2.0 @@ -2314,9 +2314,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:40 GMT + - Tue, 24 Jun 2025 14:38:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2324,10 +2324,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87656653-5f22-42f4-81c4-ad9b829aa7d8 + - f8014216-b367-4d2e-bce4-f57fd675cd08 status: 204 No Content code: 204 - duration: 291.454625ms + duration: 397.345625ms - id: 47 request: proto: HTTP/1.1 @@ -2343,8 +2343,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/8d4f4899-faa5-44cf-9f32-cd6c54b8d652 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/d2bfd334-58ef-4f40-acb8-d3c99ad35f8c method: DELETE response: proto: HTTP/2.0 @@ -2361,9 +2361,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:40 GMT + - Tue, 24 Jun 2025 14:38:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2371,10 +2371,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 842e1722-2309-42f1-a1dc-a40d8cf40c5d + - 8710841f-6f44-4a34-8975-5be878e57bc5 status: 204 No Content code: 204 - duration: 370.360792ms + duration: 369.399375ms - id: 48 request: proto: HTTP/1.1 @@ -2390,8 +2390,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/62f68cff-fdcd-4897-889c-4c525ee73934 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/acc52a4c-2a6d-4e61-91b2-f57cef1c820c method: DELETE response: proto: HTTP/2.0 @@ -2408,9 +2408,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:41 GMT + - Tue, 24 Jun 2025 14:38:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2418,10 +2418,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4216999c-b302-4eed-9289-6e5bf7d94c55 + - 0be157fb-a548-4959-844a-8ba8535ccb7d status: 204 No Content code: 204 - duration: 322.998833ms + duration: 308.145375ms - id: 49 request: proto: HTTP/1.1 @@ -2437,8 +2437,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/3216da16-3b74-479d-9372-abf68dd8fdbf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/ac0bd542-c058-42e7-8bd7-d7c80ddb1914 method: DELETE response: proto: HTTP/2.0 @@ -2455,9 +2455,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:41 GMT + - Tue, 24 Jun 2025 14:38:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2465,10 +2465,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dfc09357-07cb-4d32-b639-3fa81ddcf3dc + - 9dc5d541-d5a4-4a1d-bc8d-9b9e0211413c status: 204 No Content code: 204 - duration: 302.834167ms + duration: 432.084416ms - id: 50 request: proto: HTTP/1.1 @@ -2484,8 +2484,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/b53f0798-5ac1-4310-90c7-7d309559be1d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/d35333a4-e0c6-4e84-ba6a-c0f9c43ec9fb method: DELETE response: proto: HTTP/2.0 @@ -2502,9 +2502,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:41 GMT + - Tue, 24 Jun 2025 14:38:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2512,10 +2512,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e16112d1-3df5-48c9-aca0-5f63739f0aca + - 96590f71-bbd4-49c1-a238-e0ac5adca405 status: 204 No Content code: 204 - duration: 356.926292ms + duration: 371.537041ms - id: 51 request: proto: HTTP/1.1 @@ -2531,8 +2531,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/047b318c-ffe3-4579-b6b6-cd635db1dbbf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/82b7189d-fb2a-4f91-95a1-dd49e1f79d7f method: GET response: proto: HTTP/2.0 @@ -2540,20 +2540,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2833 + content_length: 2879 uncompressed: false - body: '{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:39.329100Z"}' + body: '{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:46.089253Z"}' headers: Content-Length: - - "2833" + - "2879" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:41 GMT + - Tue, 24 Jun 2025 14:38:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2561,10 +2561,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8233fe5-4bcf-40e4-addd-49c289e3858b + - f4d29202-1683-47ed-8934-72b44e3c18f4 status: 200 OK code: 200 - duration: 117.327833ms + duration: 113.883625ms - id: 52 request: proto: HTTP/1.1 @@ -2580,8 +2580,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/047b318c-ffe3-4579-b6b6-cd635db1dbbf/acls?order_by=created_at_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/82b7189d-fb2a-4f91-95a1-dd49e1f79d7f/acls?order_by=created_at_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -2589,20 +2589,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3228 + content_length: 3300 uncompressed: false - body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:10:32.224207Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:39.329100Z"},"id":"2e70939a-d890-4b7a-84d0-4209b7000d3f","index":1,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["foo","bar"],"invert":false,"ip_subnet":["10.0.0.10"]},"name":"test-acl","updated_at":"2025-01-24T14:10:39.931160Z"}],"total_count":1}' + body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:38:41.140303Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:46.089253Z"},"id":"20d12b8b-acb3-4283-8f3c-73ea98d04bda","index":1,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["foo","bar"],"invert":false,"ip_subnet":["10.0.0.10"],"ips_edge_services":false},"name":"test-acl","updated_at":"2025-06-24T14:38:46.608451Z"}],"total_count":1}' headers: Content-Length: - - "3228" + - "3300" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:42 GMT + - Tue, 24 Jun 2025 14:38:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2610,10 +2610,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 743c972c-cbef-4082-8e51-674f66e823dd + - c30bdc97-35a7-473f-903e-13a1e38b1bdd status: 200 OK code: 200 - duration: 179.784417ms + duration: 139.445875ms - id: 53 request: proto: HTTP/1.1 @@ -2629,8 +2629,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/047b318c-ffe3-4579-b6b6-cd635db1dbbf/acls?order_by=created_at_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/82b7189d-fb2a-4f91-95a1-dd49e1f79d7f/acls?order_by=created_at_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -2638,20 +2638,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3228 + content_length: 3300 uncompressed: false - body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:10:32.224207Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:39.329100Z"},"id":"2e70939a-d890-4b7a-84d0-4209b7000d3f","index":1,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["foo","bar"],"invert":false,"ip_subnet":["10.0.0.10"]},"name":"test-acl","updated_at":"2025-01-24T14:10:39.931160Z"}],"total_count":1}' + body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:38:41.140303Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:46.089253Z"},"id":"20d12b8b-acb3-4283-8f3c-73ea98d04bda","index":1,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["foo","bar"],"invert":false,"ip_subnet":["10.0.0.10"],"ips_edge_services":false},"name":"test-acl","updated_at":"2025-06-24T14:38:46.608451Z"}],"total_count":1}' headers: Content-Length: - - "3228" + - "3300" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:42 GMT + - Tue, 24 Jun 2025 14:38:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2659,10 +2659,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67a6ea75-17f2-4677-a6f9-8dc0d7c14aaf + - 6de6eb76-8d0a-46ed-83a7-9e9ebec3c2e8 status: 200 OK code: 200 - duration: 138.011542ms + duration: 155.537167ms - id: 54 request: proto: HTTP/1.1 @@ -2678,8 +2678,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/e9ea68b2-fe57-4539-bac3-87c8acab4f87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/706766e4-feb1-4724-ad81-658465d5a683 method: GET response: proto: HTTP/2.0 @@ -2687,20 +2687,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 324 + content_length: 320 uncompressed: false - body: '{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "324" + - "320" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:43 GMT + - Tue, 24 Jun 2025 14:38:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2708,10 +2708,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 525e789e-32a3-45bd-b4c5-2f066378bc90 + - d8d77ad7-64ae-49ee-8407-15fb26608692 status: 200 OK code: 200 - duration: 65.789792ms + duration: 45.412125ms - id: 55 request: proto: HTTP/1.1 @@ -2727,8 +2727,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5593106e-fe7b-41cb-9833-b041f6df7def + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f5c7d2a-4c6f-4c33-8ec3-1836616e525e method: GET response: proto: HTTP/2.0 @@ -2736,20 +2736,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[{"created_at":"2025-01-24T14:09:05.236908Z","id":"53053939-553b-4cda-8170-b09d780e935a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:10:42.593226Z","zone":"fr-par-1"}],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[{"created_at":"2025-06-24T14:24:33.036019Z","id":"206e815b-6028-4e74-aec4-c31d6efb02fd","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:38:49.034006Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"}' headers: Content-Length: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:43 GMT + - Tue, 24 Jun 2025 14:38:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2757,10 +2757,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa00aafa-5153-4852-84d1-d13cbcab375c + - ad4bb144-215f-424f-beab-5ace736136f0 status: 200 OK code: 200 - duration: 88.311667ms + duration: 75.692625ms - id: 56 request: proto: HTTP/1.1 @@ -2776,8 +2776,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5593106e-fe7b-41cb-9833-b041f6df7def + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f5c7d2a-4c6f-4c33-8ec3-1836616e525e method: GET response: proto: HTTP/2.0 @@ -2785,20 +2785,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[{"created_at":"2025-01-24T14:09:05.236908Z","id":"53053939-553b-4cda-8170-b09d780e935a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:10:42.593226Z","zone":"fr-par-1"}],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[{"created_at":"2025-06-24T14:24:33.036019Z","id":"206e815b-6028-4e74-aec4-c31d6efb02fd","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:38:49.034006Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"}' headers: Content-Length: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:43 GMT + - Tue, 24 Jun 2025 14:38:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2806,10 +2806,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b3865fc6-b083-45fb-a074-7b8506a4ca5c + - 2ddee346-8077-488b-8886-e2082b47dff9 status: 200 OK code: 200 - duration: 86.970458ms + duration: 80.46875ms - id: 57 request: proto: HTTP/1.1 @@ -2825,8 +2825,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5593106e-fe7b-41cb-9833-b041f6df7def/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f5c7d2a-4c6f-4c33-8ec3-1836616e525e/private-networks?order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -2845,9 +2845,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:43 GMT + - Tue, 24 Jun 2025 14:38:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2855,10 +2855,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1d8f06b-e4c6-41a0-b76f-de5c4045d059 + - 1ff36446-11b3-436f-bfe7-1fb64e3b5143 status: 200 OK code: 200 - duration: 83.960333ms + duration: 54.092625ms - id: 58 request: proto: HTTP/1.1 @@ -2874,8 +2874,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/640e568e-46e8-45bc-b3fb-42a76da43df0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/8a66c455-f88c-4c56-a056-d2e1ead7190a method: GET response: proto: HTTP/2.0 @@ -2883,20 +2883,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1902 + content_length: 1896 uncompressed: false - body: '{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[{"created_at":"2025-01-24T14:09:05.236908Z","id":"53053939-553b-4cda-8170-b09d780e935a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:10:42.593226Z","zone":"fr-par-1"}],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"}' + body: '{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[{"created_at":"2025-06-24T14:24:33.036019Z","id":"206e815b-6028-4e74-aec4-c31d6efb02fd","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:38:49.034006Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"}' headers: Content-Length: - - "1902" + - "1896" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:43 GMT + - Tue, 24 Jun 2025 14:38:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2904,10 +2904,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3895368-60a8-4894-9727-0a89795dd140 + - 56cdd8b9-ad5b-4149-95b5-b833a4d39a42 status: 200 OK code: 200 - duration: 99.596208ms + duration: 69.16875ms - id: 59 request: proto: HTTP/1.1 @@ -2923,8 +2923,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5593106e-fe7b-41cb-9833-b041f6df7def + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f5c7d2a-4c6f-4c33-8ec3-1836616e525e method: GET response: proto: HTTP/2.0 @@ -2932,20 +2932,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[{"created_at":"2025-01-24T14:09:05.236908Z","id":"53053939-553b-4cda-8170-b09d780e935a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:10:42.593226Z","zone":"fr-par-1"}],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[{"created_at":"2025-06-24T14:24:33.036019Z","id":"206e815b-6028-4e74-aec4-c31d6efb02fd","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:38:49.034006Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"}' headers: Content-Length: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:43 GMT + - Tue, 24 Jun 2025 14:38:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2953,10 +2953,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 528b2f6c-6269-4541-9eeb-99b6dfd92ac4 + - 418dd8e5-60aa-4b8c-bd8f-fed48e1d30ff status: 200 OK code: 200 - duration: 110.464958ms + duration: 67.360125ms - id: 60 request: proto: HTTP/1.1 @@ -2972,8 +2972,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/047b318c-ffe3-4579-b6b6-cd635db1dbbf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/82b7189d-fb2a-4f91-95a1-dd49e1f79d7f method: GET response: proto: HTTP/2.0 @@ -2981,20 +2981,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2833 + content_length: 2879 uncompressed: false - body: '{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:39.329100Z"}' + body: '{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:46.089253Z"}' headers: Content-Length: - - "2833" + - "2879" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:43 GMT + - Tue, 24 Jun 2025 14:38:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3002,10 +3002,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f67c74e1-2c17-4ac9-b919-fe8dff0ba585 + - 9b5c7742-08c7-4da1-95e0-e60c5539269e status: 200 OK code: 200 - duration: 128.395875ms + duration: 110.458917ms - id: 61 request: proto: HTTP/1.1 @@ -3021,8 +3021,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/047b318c-ffe3-4579-b6b6-cd635db1dbbf/acls?order_by=created_at_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/82b7189d-fb2a-4f91-95a1-dd49e1f79d7f/acls?order_by=created_at_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -3030,20 +3030,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3228 + content_length: 3300 uncompressed: false - body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:10:32.224207Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:39.329100Z"},"id":"2e70939a-d890-4b7a-84d0-4209b7000d3f","index":1,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["foo","bar"],"invert":false,"ip_subnet":["10.0.0.10"]},"name":"test-acl","updated_at":"2025-01-24T14:10:39.931160Z"}],"total_count":1}' + body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:38:41.140303Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:46.089253Z"},"id":"20d12b8b-acb3-4283-8f3c-73ea98d04bda","index":1,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["foo","bar"],"invert":false,"ip_subnet":["10.0.0.10"],"ips_edge_services":false},"name":"test-acl","updated_at":"2025-06-24T14:38:46.608451Z"}],"total_count":1}' headers: Content-Length: - - "3228" + - "3300" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:43 GMT + - Tue, 24 Jun 2025 14:38:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3051,10 +3051,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9442ea2e-fa3c-4261-b45b-df4ac6f9f0c9 + - 6cb898f8-1cef-47d9-8a8d-bae7975d30a9 status: 200 OK code: 200 - duration: 126.097459ms + duration: 186.795792ms - id: 62 request: proto: HTTP/1.1 @@ -3070,8 +3070,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/e9ea68b2-fe57-4539-bac3-87c8acab4f87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/706766e4-feb1-4724-ad81-658465d5a683 method: GET response: proto: HTTP/2.0 @@ -3079,20 +3079,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 324 + content_length: 320 uncompressed: false - body: '{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "324" + - "320" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:44 GMT + - Tue, 24 Jun 2025 14:38:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3100,10 +3100,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2868183a-3807-4d84-9778-b1b843d028de + - 428669bb-c490-45b1-88eb-6f764bce7624 status: 200 OK code: 200 - duration: 63.964833ms + duration: 55.074375ms - id: 63 request: proto: HTTP/1.1 @@ -3119,8 +3119,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5593106e-fe7b-41cb-9833-b041f6df7def + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f5c7d2a-4c6f-4c33-8ec3-1836616e525e method: GET response: proto: HTTP/2.0 @@ -3128,20 +3128,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[{"created_at":"2025-01-24T14:09:05.236908Z","id":"53053939-553b-4cda-8170-b09d780e935a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:10:42.593226Z","zone":"fr-par-1"}],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[{"created_at":"2025-06-24T14:24:33.036019Z","id":"206e815b-6028-4e74-aec4-c31d6efb02fd","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:38:49.034006Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"}' headers: Content-Length: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:44 GMT + - Tue, 24 Jun 2025 14:38:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3149,10 +3149,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7209fb6-af4b-4ad0-accd-892f8a8c08db + - a833c07b-5ea4-4502-8f8d-4b13467cc632 status: 200 OK code: 200 - duration: 103.508958ms + duration: 84.443666ms - id: 64 request: proto: HTTP/1.1 @@ -3168,8 +3168,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/640e568e-46e8-45bc-b3fb-42a76da43df0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/8a66c455-f88c-4c56-a056-d2e1ead7190a method: GET response: proto: HTTP/2.0 @@ -3177,20 +3177,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1902 + content_length: 1896 uncompressed: false - body: '{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[{"created_at":"2025-01-24T14:09:05.236908Z","id":"53053939-553b-4cda-8170-b09d780e935a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:10:42.593226Z","zone":"fr-par-1"}],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"}' + body: '{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[{"created_at":"2025-06-24T14:24:33.036019Z","id":"206e815b-6028-4e74-aec4-c31d6efb02fd","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:38:49.034006Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"}' headers: Content-Length: - - "1902" + - "1896" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:44 GMT + - Tue, 24 Jun 2025 14:38:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3198,10 +3198,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d94bc3d6-1edc-4b4e-9395-300705fd0f23 + - 32c9b3b9-ca9d-467f-9433-8bb3a5d6fffd status: 200 OK code: 200 - duration: 114.357208ms + duration: 98.931125ms - id: 65 request: proto: HTTP/1.1 @@ -3217,8 +3217,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/047b318c-ffe3-4579-b6b6-cd635db1dbbf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/82b7189d-fb2a-4f91-95a1-dd49e1f79d7f method: GET response: proto: HTTP/2.0 @@ -3226,20 +3226,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2833 + content_length: 2879 uncompressed: false - body: '{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:39.329100Z"}' + body: '{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:46.089253Z"}' headers: Content-Length: - - "2833" + - "2879" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:44 GMT + - Tue, 24 Jun 2025 14:38:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3247,10 +3247,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79dcd587-a5ac-4d28-a55a-57a05154db3c + - 40e41f1e-16e8-4a48-9ad6-4a7cd8814087 status: 200 OK code: 200 - duration: 135.411375ms + duration: 141.13725ms - id: 66 request: proto: HTTP/1.1 @@ -3266,8 +3266,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5593106e-fe7b-41cb-9833-b041f6df7def + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f5c7d2a-4c6f-4c33-8ec3-1836616e525e/private-networks?order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -3275,20 +3275,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 38 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[{"created_at":"2025-01-24T14:09:05.236908Z","id":"53053939-553b-4cda-8170-b09d780e935a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:10:42.593226Z","zone":"fr-par-1"}],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"}' + body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "1064" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:44 GMT + - Tue, 24 Jun 2025 14:38:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3296,10 +3296,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 38d2cbd1-02f7-4a94-bb79-0b135c12273a + - b46d2ba0-1402-493e-93e7-b126cc374c6b status: 200 OK code: 200 - duration: 96.277958ms + duration: 66.036458ms - id: 67 request: proto: HTTP/1.1 @@ -3315,8 +3315,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5593106e-fe7b-41cb-9833-b041f6df7def/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f5c7d2a-4c6f-4c33-8ec3-1836616e525e method: GET response: proto: HTTP/2.0 @@ -3324,20 +3324,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 38 + content_length: 1060 uncompressed: false - body: '{"private_network":[],"total_count":0}' + body: '{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[{"created_at":"2025-06-24T14:24:33.036019Z","id":"206e815b-6028-4e74-aec4-c31d6efb02fd","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:38:49.034006Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"}' headers: Content-Length: - - "38" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:44 GMT + - Tue, 24 Jun 2025 14:38:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3345,10 +3345,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15013602-9af8-40b5-96ec-fcd7f9d2b784 + - 9316be0e-c6b2-481b-9546-62a490557fdb status: 200 OK code: 200 - duration: 74.914083ms + duration: 95.797875ms - id: 68 request: proto: HTTP/1.1 @@ -3364,8 +3364,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5593106e-fe7b-41cb-9833-b041f6df7def + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f5c7d2a-4c6f-4c33-8ec3-1836616e525e method: GET response: proto: HTTP/2.0 @@ -3373,20 +3373,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[{"created_at":"2025-01-24T14:09:05.236908Z","id":"53053939-553b-4cda-8170-b09d780e935a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:10:42.593226Z","zone":"fr-par-1"}],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[{"created_at":"2025-06-24T14:24:33.036019Z","id":"206e815b-6028-4e74-aec4-c31d6efb02fd","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:38:49.034006Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"}' headers: Content-Length: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:44 GMT + - Tue, 24 Jun 2025 14:38:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3394,10 +3394,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce0286a9-469b-4242-922b-86c1f7e09548 + - 312c3349-9840-4a87-8cde-36776da93223 status: 200 OK code: 200 - duration: 84.549292ms + duration: 77.0415ms - id: 69 request: proto: HTTP/1.1 @@ -3413,8 +3413,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/047b318c-ffe3-4579-b6b6-cd635db1dbbf/acls?order_by=created_at_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/82b7189d-fb2a-4f91-95a1-dd49e1f79d7f/acls?order_by=created_at_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -3422,20 +3422,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3228 + content_length: 3300 uncompressed: false - body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2025-01-24T14:10:32.224207Z","description":"","frontend":{"backend":{"created_at":"2025-01-24T14:10:29.718249Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"640e568e-46e8-45bc-b3fb-42a76da43df0","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-romantic-allen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-01-24T14:10:29.718249Z"},"certificate":null,"certificate_ids":[],"created_at":"2025-01-24T14:10:31.121043Z","enable_http3":false,"id":"047b318c-ffe3-4579-b6b6-cd635db1dbbf","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":1,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-01-24T14:10:39.329100Z"},"id":"2e70939a-d890-4b7a-84d0-4209b7000d3f","index":1,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["foo","bar"],"invert":false,"ip_subnet":["10.0.0.10"]},"name":"test-acl","updated_at":"2025-01-24T14:10:39.931160Z"}],"total_count":1}' + body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T14:38:41.140303Z","description":"","frontend":{"backend":{"created_at":"2025-06-24T14:38:39.213312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8a66c455-f88c-4c56-a056-d2e1ead7190a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-adoring-borg","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-24T14:38:39.213312Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T14:38:40.066295Z","enable_access_logs":false,"enable_http3":false,"id":"82b7189d-fb2a-4f91-95a1-dd49e1f79d7f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":1,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T14:38:46.089253Z"},"id":"20d12b8b-acb3-4283-8f3c-73ea98d04bda","index":1,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["foo","bar"],"invert":false,"ip_subnet":["10.0.0.10"],"ips_edge_services":false},"name":"test-acl","updated_at":"2025-06-24T14:38:46.608451Z"}],"total_count":1}' headers: Content-Length: - - "3228" + - "3300" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:44 GMT + - Tue, 24 Jun 2025 14:38:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3443,10 +3443,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc18cac2-be9b-4714-9cd6-bc27999f629a + - 81633d85-f853-4a06-aec0-801669cabd70 status: 200 OK code: 200 - duration: 157.796458ms + duration: 197.604125ms - id: 70 request: proto: HTTP/1.1 @@ -3462,8 +3462,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/047b318c-ffe3-4579-b6b6-cd635db1dbbf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/82b7189d-fb2a-4f91-95a1-dd49e1f79d7f method: DELETE response: proto: HTTP/2.0 @@ -3480,9 +3480,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:45 GMT + - Tue, 24 Jun 2025 14:38:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3490,10 +3490,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c62d452-b8df-4937-a48d-64219ef4394e + - 8d328670-413f-4604-933a-2fa29fb58d42 status: 204 No Content code: 204 - duration: 416.989583ms + duration: 314.900042ms - id: 71 request: proto: HTTP/1.1 @@ -3509,8 +3509,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5593106e-fe7b-41cb-9833-b041f6df7def + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f5c7d2a-4c6f-4c33-8ec3-1836616e525e method: GET response: proto: HTTP/2.0 @@ -3518,20 +3518,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1066 + content_length: 1062 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":0,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[{"created_at":"2025-01-24T14:09:05.236908Z","id":"53053939-553b-4cda-8170-b09d780e935a","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-01-24T14:10:45.776220Z","zone":"fr-par-1"}],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":0,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[{"created_at":"2025-06-24T14:24:33.036019Z","id":"206e815b-6028-4e74-aec4-c31d6efb02fd","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-24T14:38:51.019171Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"}' headers: Content-Length: - - "1066" + - "1062" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:46 GMT + - Tue, 24 Jun 2025 14:38:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3539,10 +3539,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f895eb09-1049-4291-a5b1-d0e8ffab2075 + - 3c5f5868-62d1-4dc1-9281-5499d1215a28 status: 200 OK code: 200 - duration: 97.386666ms + duration: 79.936292ms - id: 72 request: proto: HTTP/1.1 @@ -3558,8 +3558,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5593106e-fe7b-41cb-9833-b041f6df7def + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f5c7d2a-4c6f-4c33-8ec3-1836616e525e method: GET response: proto: HTTP/2.0 @@ -3567,20 +3567,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1062 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":0,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[{"created_at":"2025-01-24T14:09:05.236908Z","id":"53053939-553b-4cda-8170-b09d780e935a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:10:46.134399Z","zone":"fr-par-1"}],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":0,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[{"created_at":"2025-06-24T14:24:33.036019Z","id":"206e815b-6028-4e74-aec4-c31d6efb02fd","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-24T14:38:51.019171Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"}' headers: Content-Length: - - "1064" + - "1062" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:46 GMT + - Tue, 24 Jun 2025 14:38:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3588,10 +3588,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25b18197-6eaa-4088-aa69-4359aa18b4db + - 0acc6a31-7d0d-46de-aabd-56a1cc15a4fb status: 200 OK code: 200 - duration: 93.240708ms + duration: 128.852083ms - id: 73 request: proto: HTTP/1.1 @@ -3607,8 +3607,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/640e568e-46e8-45bc-b3fb-42a76da43df0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/8a66c455-f88c-4c56-a056-d2e1ead7190a method: DELETE response: proto: HTTP/2.0 @@ -3625,9 +3625,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:46 GMT + - Tue, 24 Jun 2025 14:38:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3635,10 +3635,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2577b8a-0f37-41cb-9d06-ff38d9c30980 + - 4fb51ccd-a884-468c-be18-39b62a1fe072 status: 204 No Content code: 204 - duration: 303.407833ms + duration: 368.465041ms - id: 74 request: proto: HTTP/1.1 @@ -3654,8 +3654,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5593106e-fe7b-41cb-9833-b041f6df7def + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f5c7d2a-4c6f-4c33-8ec3-1836616e525e method: GET response: proto: HTTP/2.0 @@ -3663,20 +3663,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1066 + content_length: 1062 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":0,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[{"created_at":"2025-01-24T14:09:05.236908Z","id":"53053939-553b-4cda-8170-b09d780e935a","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-01-24T14:10:46.392941Z","zone":"fr-par-1"}],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":0,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[{"created_at":"2025-06-24T14:24:33.036019Z","id":"206e815b-6028-4e74-aec4-c31d6efb02fd","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-24T14:38:51.562957Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"}' headers: Content-Length: - - "1066" + - "1062" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:46 GMT + - Tue, 24 Jun 2025 14:38:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3684,10 +3684,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ad9c0db-7808-4982-b827-fe16f3fce897 + - bd89eb24-c08d-4556-a77f-acf82f25c860 status: 200 OK code: 200 - duration: 119.92025ms + duration: 69.991542ms - id: 75 request: proto: HTTP/1.1 @@ -3703,8 +3703,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5593106e-fe7b-41cb-9833-b041f6df7def + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f5c7d2a-4c6f-4c33-8ec3-1836616e525e method: GET response: proto: HTTP/2.0 @@ -3712,20 +3712,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":0,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[{"created_at":"2025-01-24T14:09:05.236908Z","id":"53053939-553b-4cda-8170-b09d780e935a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:10:46.707605Z","zone":"fr-par-1"}],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:04.644316Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":0,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[{"created_at":"2025-06-24T14:24:33.036019Z","id":"206e815b-6028-4e74-aec4-c31d6efb02fd","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:38:51.893228Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:12.538711Z","zone":"fr-par-1"}' headers: Content-Length: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:46 GMT + - Tue, 24 Jun 2025 14:38:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3733,10 +3733,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d64acc59-aaf9-441a-9748-2fff40525355 + - ebc7b1a6-711e-4bd4-85dd-4131dd862b4b status: 200 OK code: 200 - duration: 110.027458ms + duration: 66.6675ms - id: 76 request: proto: HTTP/1.1 @@ -3752,8 +3752,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5593106e-fe7b-41cb-9833-b041f6df7def?release_ip=false + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f5c7d2a-4c6f-4c33-8ec3-1836616e525e?release_ip=false method: DELETE response: proto: HTTP/2.0 @@ -3770,9 +3770,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:47 GMT + - Tue, 24 Jun 2025 14:38:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3780,10 +3780,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7abc6177-bd88-405f-9cd0-afedc845b69d + - c9a466b0-347f-4318-9c75-3a3a5903e4da status: 204 No Content code: 204 - duration: 282.677958ms + duration: 346.924625ms - id: 77 request: proto: HTTP/1.1 @@ -3799,8 +3799,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5593106e-fe7b-41cb-9833-b041f6df7def + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f5c7d2a-4c6f-4c33-8ec3-1836616e525e method: GET response: proto: HTTP/2.0 @@ -3808,20 +3808,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1068 + content_length: 1064 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-01-24T14:09:58.930191Z","description":"","frontend_count":0,"id":"5593106e-fe7b-41cb-9833-b041f6df7def","instances":[{"created_at":"2025-01-24T14:09:05.236908Z","id":"53053939-553b-4cda-8170-b09d780e935a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:10:46.707605Z","zone":"fr-par-1"}],"ip":[{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":"5593106e-fe7b-41cb-9833-b041f6df7def","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"to_delete","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:10:46.884955Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-06-24T14:38:08.352724Z","description":"","frontend_count":0,"id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","instances":[{"created_at":"2025-06-24T14:24:33.036019Z","id":"206e815b-6028-4e74-aec4-c31d6efb02fd","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T14:38:51.893228Z","zone":"fr-par-1"}],"ip":[{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":"6f5c7d2a-4c6f-4c33-8ec3-1836616e525e","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"to_delete","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-24T14:38:52.038755Z","zone":"fr-par-1"}' headers: Content-Length: - - "1068" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:10:47 GMT + - Tue, 24 Jun 2025 14:38:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3829,10 +3829,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2519a2a8-82af-4cbc-9552-bfa6b4530914 + - 9fe4f9ab-ba3b-407c-a013-bd429cc56a29 status: 200 OK code: 200 - duration: 106.182166ms + duration: 84.133458ms - id: 78 request: proto: HTTP/1.1 @@ -3848,8 +3848,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5593106e-fe7b-41cb-9833-b041f6df7def + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f5c7d2a-4c6f-4c33-8ec3-1836616e525e method: GET response: proto: HTTP/2.0 @@ -3868,9 +3868,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:11:17 GMT + - Tue, 24 Jun 2025 14:39:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3878,10 +3878,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a9326e7d-bb8d-4bdf-9c6d-c5e31be6704d + - c0c3e1e0-d548-44f5-bb53-33270ff87ce0 status: 404 Not Found code: 404 - duration: 29.531833ms + duration: 36.866417ms - id: 79 request: proto: HTTP/1.1 @@ -3897,8 +3897,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5593106e-fe7b-41cb-9833-b041f6df7def + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6f5c7d2a-4c6f-4c33-8ec3-1836616e525e method: GET response: proto: HTTP/2.0 @@ -3917,9 +3917,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:11:17 GMT + - Tue, 24 Jun 2025 14:39:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3927,10 +3927,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7447f406-972f-471b-a2f0-f83d90e6fb0d + - b691cb0f-c1d0-4902-a6ff-430c7bf261bd status: 404 Not Found code: 404 - duration: 22.716125ms + duration: 49.568875ms - id: 80 request: proto: HTTP/1.1 @@ -3946,8 +3946,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/e9ea68b2-fe57-4539-bac3-87c8acab4f87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/706766e4-feb1-4724-ad81-658465d5a683 method: GET response: proto: HTTP/2.0 @@ -3955,20 +3955,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 290 + content_length: 286 uncompressed: false - body: '{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "290" + - "286" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:11:18 GMT + - Tue, 24 Jun 2025 14:39:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3976,10 +3976,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a67af01-dbee-4f41-9ea0-e0db2f952586 + - 4321e209-3b51-4ce3-9e25-9b73889f6c25 status: 200 OK code: 200 - duration: 70.41875ms + duration: 49.464208ms - id: 81 request: proto: HTTP/1.1 @@ -3995,8 +3995,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/e9ea68b2-fe57-4539-bac3-87c8acab4f87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/706766e4-feb1-4724-ad81-658465d5a683 method: GET response: proto: HTTP/2.0 @@ -4004,20 +4004,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 290 + content_length: 286 uncompressed: false - body: '{"id":"e9ea68b2-fe57-4539-bac3-87c8acab4f87","ip_address":"51.159.115.112","lb_id":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-115-112.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"id":"706766e4-feb1-4724-ad81-658465d5a683","ip_address":"51.15.199.94","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-199-94.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "290" + - "286" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:11:18 GMT + - Tue, 24 Jun 2025 14:39:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4025,10 +4025,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f855d165-61de-4e74-a187-26cf4d50cc50 + - 9e19c96d-fe32-4cf1-824e-a18226c2473a status: 200 OK code: 200 - duration: 138.96075ms + duration: 47.858708ms - id: 82 request: proto: HTTP/1.1 @@ -4044,8 +4044,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/e9ea68b2-fe57-4539-bac3-87c8acab4f87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/706766e4-feb1-4724-ad81-658465d5a683 method: DELETE response: proto: HTTP/2.0 @@ -4062,9 +4062,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:11:19 GMT + - Tue, 24 Jun 2025 14:39:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4072,7 +4072,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 203cd2b0-23f6-4271-af83-9ddf9453f4a6 + - 1d3e2bee-2147-4e87-8a7a-ed99bf4fa412 status: 204 No Content code: 204 - duration: 332.054333ms + duration: 483.524375ms diff --git a/internal/services/lb/types.go b/internal/services/lb/types.go index 36f3d36b79..c22e0095fd 100644 --- a/internal/services/lb/types.go +++ b/internal/services/lb/types.go @@ -6,6 +6,7 @@ import ( "strings" "time" + "github.com/hashicorp/go-cty/cty" "github.com/hashicorp/terraform-plugin-log/tflog" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" @@ -63,25 +64,81 @@ func flattenLbACLMatch(match *lb.ACLMatch) any { "http_filter_value": types.FlattenSliceStringPtr(match.HTTPFilterValue), "http_filter_option": match.HTTPFilterOption, "invert": match.Invert, + "ips_edge_services": match.IPsEdgeServices, }, } } -func expandLbACLMatch(raw any) *lb.ACLMatch { +func isIPSubnetConfigured(d *schema.ResourceData, aclIndex int) bool { + rawConfig := d.GetRawConfig() + if rawConfig.IsNull() { + return false + } + + if rawConfig.Type().HasAttribute("match") { + // Standalone ACL resource + matchConfig := rawConfig.GetAttr("match") + if matchConfig.IsNull() || matchConfig.LengthInt() == 0 { + return false + } + + matchBlock := matchConfig.Index(cty.NumberIntVal(0)) + if matchBlock.IsNull() || !matchBlock.Type().HasAttribute("ip_subnet") { + return false + } + + return !matchBlock.GetAttr("ip_subnet").IsNull() + } else if rawConfig.Type().HasAttribute("acl") { + // Frontend resource - check specific ACL by index + aclConfig := rawConfig.GetAttr("acl") + if aclConfig.IsNull() || aclConfig.LengthInt() <= aclIndex { + return false + } + + aclBlock := aclConfig.Index(cty.NumberIntVal(int64(aclIndex))) + if aclBlock.IsNull() || !aclBlock.Type().HasAttribute("match") { + return false + } + + matchConfig := aclBlock.GetAttr("match") + if matchConfig.IsNull() || matchConfig.LengthInt() == 0 { + return false + } + + matchBlock := matchConfig.Index(cty.NumberIntVal(0)) + if matchBlock.IsNull() || !matchBlock.Type().HasAttribute("ip_subnet") { + return false + } + + return !matchBlock.GetAttr("ip_subnet").IsNull() + } + + return false +} + +func expandLbACLMatch(d *schema.ResourceData, raw any, aclIndex int) *lb.ACLMatch { if raw == nil || len(raw.([]any)) != 1 { return nil } rawMap := raw.([]any)[0].(map[string]any) + ipsEdgeServices := rawMap["ips_edge_services"].(bool) + ipSubnetConfigured := isIPSubnetConfigured(d, aclIndex) + + var ipSubnet []*string - // scaleway api require ip subnet, so if we did not specify one, just put 0.0.0.0/0 instead - ipSubnet := types.ExpandSliceStringPtr(rawMap["ip_subnet"].([]any)) - if len(ipSubnet) == 0 { + switch { + case ipsEdgeServices: + ipSubnet = nil + case ipSubnetConfigured: + ipSubnet = types.ExpandSliceStringPtr(rawMap["ip_subnet"].([]any)) + default: ipSubnet = []*string{types.ExpandStringPtr("0.0.0.0/0")} } return &lb.ACLMatch{ IPSubnet: ipSubnet, + IPsEdgeServices: rawMap["ips_edge_services"].(bool), HTTPFilter: lb.ACLHTTPFilter(rawMap["http_filter"].(string)), HTTPFilterValue: types.ExpandSliceStringPtr(rawMap["http_filter_value"].([]any)), HTTPFilterOption: types.ExpandStringPtr(rawMap["http_filter_option"].(string)), @@ -259,12 +316,12 @@ func flattenLbACL(acl *lb.ACL) any { } // expandLbACL transforms a state acl to an api one. -func expandLbACL(i any) *lb.ACL { +func expandLbACL(d *schema.ResourceData, i any, aclIndex int) *lb.ACL { rawRule := i.(map[string]any) acl := &lb.ACL{ Name: rawRule["name"].(string), Description: rawRule["description"].(string), - Match: expandLbACLMatch(rawRule["match"]), + Match: expandLbACLMatch(d, rawRule["match"], aclIndex), Action: expandLbACLAction(rawRule["action"]), CreatedAt: types.ExpandTimePtr(rawRule["created_at"]), UpdatedAt: types.ExpandTimePtr(rawRule["updated_at"]),