From 199eab8f1595a9205f55055ac97a2c3b12922f75 Mon Sep 17 00:00:00 2001 From: Yacine FODIL Date: Tue, 24 Jun 2025 15:46:14 +0200 Subject: [PATCH 1/5] feat(lb): add ips_edge_services field --- docs/resources/lb_acl.md | 6 +- docs/resources/lb_frontend.md | 8 +- internal/services/lb/acl.go | 11 +- internal/services/lb/acl_test.go | 110 +- internal/services/lb/frontend.go | 10 +- .../lb/testdata/acl-basic.cassette.yaml | 3062 +++++++++++++---- internal/services/lb/types.go | 41 +- 7 files changed, 2630 insertions(+), 618 deletions(-) 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..a0b7ec8eb3 100644 --- a/internal/services/lb/acl.go +++ b/internal/services/lb/acl.go @@ -110,6 +110,7 @@ func ResourceACL() *schema.Resource { Optional: true, Description: "A list of IPs or CIDR v4/v6 addresses of the client of the session to match", DiffSuppressFunc: diffSuppressFunc32SubnetMask, + ConflictsWith: []string{"ips_edge_services"}, }, "http_filter": { Type: schema.TypeString, @@ -136,6 +137,12 @@ 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`, + ConflictsWith: []string{"ip_subnet"}, + }, }, }, }, @@ -169,7 +176,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")), Index: int32(d.Get("index").(int)), Description: d.Get("description").(string), } @@ -231,7 +238,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")), 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/frontend.go b/internal/services/lb/frontend.go index d25e9e9668..e2b895ad10 100644 --- a/internal/services/lb/frontend.go +++ b/internal/services/lb/frontend.go @@ -382,7 +382,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 +441,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 _, rawACL := range r { + newACL = append(newACL, expandLbACL(d, rawACL)) } return newACL diff --git a/internal/services/lb/testdata/acl-basic.cassette.yaml b/internal/services/lb/testdata/acl-basic.cassette.yaml index b3f4f460d7..be1b80abed 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: 290 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":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "288" + - "290" 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 13:13:21 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 + - 9fd9d746-6c6e-48f9-ab12-971dcf2bc333 status: 200 OK code: 200 - duration: 247.079625ms + duration: 268.129292ms - 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/61375f77-5d7c-4809-92e2-1f37c5ccbed1 method: GET response: proto: HTTP/2.0 @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 288 + content_length: 290 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":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "288" + - "290" 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 13:13:21 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 + - c9427867-c5d4-4dfe-9608-0c34dd60c709 status: 200 OK code: 200 - duration: 71.311ms + duration: 50.450833ms - 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":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","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: 874 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-24T13:13:21.732224039Z","description":"","frontend_count":0,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:21.732224039Z","zone":"fr-par-1"}' headers: Content-Length: - - "872" + - "874" 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 13:13:21 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 + - fb9ec995-6f32-4a72-8e91-1cdebd0ac42f status: 200 OK code: 200 - duration: 351.203209ms + duration: 393.823375ms - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d method: GET response: proto: HTTP/2.0 @@ -176,20 +176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 866 + content_length: 868 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-24T13:13:21.732224Z","description":"","frontend_count":0,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:21.732224Z","zone":"fr-par-1"}' headers: Content-Length: - - "866" + - "868" 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 13:13:22 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 + - 459f606d-e08d-4ab2-89e1-9940808e8152 status: 200 OK code: 200 - duration: 86.584583ms + duration: 64.4705ms - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d method: GET response: proto: HTTP/2.0 @@ -225,20 +225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1062 + content_length: 1064 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-24T13:13:21.732224Z","description":"","frontend_count":0,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:23.810051Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"}' headers: Content-Length: - - "1062" + - "1064" 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 13:13:52 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 + - c6bf893c-2feb-4ec0-b1fb-c1b3960bba0b status: 200 OK code: 200 - duration: 110.373875ms + duration: 74.652792ms - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d method: GET response: proto: HTTP/2.0 @@ -274,20 +274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1062 + content_length: 1064 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-24T13:13:21.732224Z","description":"","frontend_count":0,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:23.810051Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"}' headers: Content-Length: - - "1062" + - "1064" 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 13:13:52 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: @@ -295,10 +295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59e2e709-fef2-4092-8e13-d4dacdc8fd2f + - d301975a-e54d-4eac-b301-4257413fe6de status: 200 OK code: 200 - duration: 111.716917ms + duration: 107.134166ms - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d/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 13:13:52 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: @@ -344,10 +344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a5d3585-f41f-45ee-ba96-9b78cd2c1d7f + - 10676ab4-dfc6-48d7-bb11-f2ba3611864d status: 200 OK code: 200 - duration: 64.250333ms + duration: 65.397542ms - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d method: GET response: proto: HTTP/2.0 @@ -372,20 +372,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1062 + content_length: 1064 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-24T13:13:21.732224Z","description":"","frontend_count":0,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:23.810051Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"}' headers: Content-Length: - - "1062" + - "1064" 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 13:13:52 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: @@ -393,29 +393,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d1d1cd3-0d1b-4a2f-9b5d-c2f428e59a9a + - 365bad56-02d8-4da9-800f-f239e5c9c166 status: 200 OK code: 200 - duration: 89.197834ms + duration: 63.897708ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 608 + content_length: 614 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-reverent-montalcini","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/bc188ea8-b63d-4448-af93-176c9aa8e16d/backends method: POST response: proto: HTTP/2.0 @@ -423,20 +423,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1910 + content_length: 1918 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-24T13:13:52.512355258Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":0,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-24T13:13:52.536665837Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355258Z"}' headers: Content-Length: - - "1910" + - "1918" 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 13:13:52 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: @@ -444,10 +444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ffc4c65f-4a5e-4e31-8111-426ea9729eac + - 23f77209-d012-4f54-be2c-872c114762a7 status: 200 OK code: 200 - duration: 379.533916ms + duration: 317.686667ms - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d method: GET response: proto: HTTP/2.0 @@ -472,20 +472,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1066 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-24T13:13:21.732224Z","description":"","frontend_count":0,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-24T13:13:52.536666Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"}' headers: Content-Length: - - "1064" + - "1066" 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 13:13:52 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: @@ -493,10 +493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c3f8955-578d-4fc3-850a-5b4293e293af + - de5d420c-8884-4401-a356-538d654d08e1 status: 200 OK code: 200 - duration: 98.034708ms + duration: 68.081125ms - 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/c6537c0e-edf2-4179-ba8e-86ffd42cc8bb method: GET response: proto: HTTP/2.0 @@ -521,20 +521,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1901 + content_length: 1909 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-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":0,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-24T13:13:52.536666Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"}' headers: Content-Length: - - "1901" + - "1909" 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 13:13:52 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: @@ -542,10 +542,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b55afb3c-fb16-4334-b1c9-fdeed80163f6 + - 1370632e-6e0f-4b70-8c38-117b91f54bbb status: 200 OK code: 200 - duration: 104.244666ms + duration: 85.012208ms - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d method: GET response: proto: HTTP/2.0 @@ -572,7 +572,7 @@ interactions: trailer: {} content_length: 1064 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-24T13:13:21.732224Z","description":"","frontend_count":0,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:52.902421Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"}' headers: Content-Length: - "1064" @@ -581,9 +581,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:22 GMT + - Tue, 24 Jun 2025 13:13:52 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: @@ -591,10 +591,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e057c4f-ecf8-400e-8ea0-7230b54359a1 + - 264be070-427b-410d-9eea-8f3986c158c9 status: 200 OK code: 200 - duration: 113.038834ms + duration: 84.809083ms - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d method: GET response: proto: HTTP/2.0 @@ -621,7 +621,7 @@ interactions: trailer: {} content_length: 1064 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-24T13:13:21.732224Z","description":"","frontend_count":0,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:52.902421Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"}' headers: Content-Length: - "1064" @@ -630,9 +630,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:22 GMT + - Tue, 24 Jun 2025 13:13:53 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: @@ -640,29 +640,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d2b0656-b840-45b6-9452-499f962de2bc + - d36ca29b-f1b8-49be-b434-717542d7ce82 status: 200 OK code: 200 - duration: 79.968542ms + duration: 64.151084ms - 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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","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/bc188ea8-b63d-4448-af93-176c9aa8e16d/frontends method: POST response: proto: HTTP/2.0 @@ -670,20 +670,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3033 + content_length: 3099 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-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-24T13:13:53.277505597Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"}' headers: Content-Length: - - "3033" + - "3099" 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 13:13:53 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: @@ -691,10 +691,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 030cf170-cf3d-47bc-9a3d-cd8b72493edb + - 905a3d75-7310-4eff-9baf-904712b54518 status: 200 OK code: 200 - duration: 504.404375ms + duration: 422.044166ms - 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/8f01ab20-ce56-4e12-a173-4a1a85cfebf7 method: GET response: proto: HTTP/2.0 @@ -719,20 +719,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2828 + content_length: 2894 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-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"}' headers: Content-Length: - - "2828" + - "2894" 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 13:13:53 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: @@ -740,29 +740,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2b8fbe5-8c8d-4a32-bfd8-83f6c688da9c + - 78bffdd5-47ce-4fa3-8495-64af9f9f71bd status: 200 OK code: 200 - duration: 98.320625ms + duration: 120.350167ms - 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/8f01ab20-ce56-4e12-a173-4a1a85cfebf7/acls method: POST response: proto: HTTP/2.0 @@ -770,20 +770,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3253 + content_length: 3345 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-24T13:13:53.749786525Z","description":"a description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:13:53.749786525Z"}' headers: Content-Length: - - "3253" + - "3345" 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 13:13:53 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: @@ -791,10 +791,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 878bd143-448a-4667-b031-867e4388f727 + - 0b2b3406-e85b-42e9-bec7-fae5a4f820e3 status: 200 OK code: 200 - duration: 515.4745ms + duration: 360.686291ms - 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/f9a060ce-e58b-41f8-99d8-19fafa96329e method: GET response: proto: HTTP/2.0 @@ -819,20 +819,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3247 + content_length: 3339 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-24T13:13:53.749787Z","description":"a description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:13:53.749787Z"}' headers: Content-Length: - - "3247" + - "3339" 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 13:13:54 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: @@ -840,10 +840,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a5c6afff-f75f-4ee2-a603-1500b316fc20 + - b2202e33-805b-4f41-91b1-e4b9e46d1253 status: 200 OK code: 200 - duration: 113.690791ms + duration: 108.008125ms - 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/f9a060ce-e58b-41f8-99d8-19fafa96329e method: GET response: proto: HTTP/2.0 @@ -868,20 +868,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3247 + content_length: 3339 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-24T13:13:53.749787Z","description":"a description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:13:53.749787Z"}' headers: Content-Length: - - "3247" + - "3339" 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 13:13:54 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: @@ -889,10 +889,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cad7b29b-22a4-4fd7-abc5-e70f1a593f22 + - 71500195-6e71-4990-94ae-300c703aace7 status: 200 OK code: 200 - duration: 129.881875ms + duration: 91.639708ms - 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/61375f77-5d7c-4809-92e2-1f37c5ccbed1 method: GET response: proto: HTTP/2.0 @@ -917,20 +917,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 322 + content_length: 324 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":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "322" + - "324" 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 13:13:54 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: @@ -938,10 +938,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 486da314-dd36-4cb1-ac21-4a4c8b57cd8e + - d9e59b81-9371-4da2-93fc-b0ef6af866d8 status: 200 OK code: 200 - duration: 63.679292ms + duration: 40.95075ms - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d method: GET response: proto: HTTP/2.0 @@ -966,20 +966,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1062 + content_length: 1064 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-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:54.141984Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"}' headers: Content-Length: - - "1062" + - "1064" 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 13:13:54 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: @@ -987,10 +987,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 673d6888-41a0-4706-a4eb-dda6d14f0bce + - a303f79b-2502-4b4a-9572-d694a81b6341 status: 200 OK code: 200 - duration: 117.058542ms + duration: 66.015916ms - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d method: GET response: proto: HTTP/2.0 @@ -1015,20 +1015,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1062 + content_length: 1064 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-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:54.141984Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"}' headers: Content-Length: - - "1062" + - "1064" 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 13:13:54 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: @@ -1036,10 +1036,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2670c72-b719-4844-b5c4-8f1c00f47dd9 + - 7138bb8d-efbc-4677-9198-b7af1b9bfdff status: 200 OK code: 200 - duration: 105.258208ms + duration: 74.562917ms - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d/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 13:13:54 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: @@ -1085,10 +1085,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4f7b8a8-2f13-45e3-9200-b5d1134c29f1 + - ded43268-c9aa-4b80-a458-9d1cc44b940e status: 200 OK code: 200 - duration: 81.209959ms + duration: 55.574542ms - 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/c6537c0e-edf2-4179-ba8e-86ffd42cc8bb method: GET response: proto: HTTP/2.0 @@ -1113,20 +1113,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + content_length: 1907 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-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:54.141984Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"}' headers: Content-Length: - - "1899" + - "1907" 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 13:13:54 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: @@ -1134,10 +1134,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6fd3d44b-b1e5-4dfe-93a9-a228ae933025 + - 8870b7ed-bd34-453f-a419-1cba9417e294 status: 200 OK code: 200 - duration: 99.534ms + duration: 103.425833ms - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d method: GET response: proto: HTTP/2.0 @@ -1162,20 +1162,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1062 + content_length: 1064 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-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:54.141984Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"}' headers: Content-Length: - - "1062" + - "1064" 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 13:13:54 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: @@ -1183,10 +1183,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a9dd13c-f559-4f31-92f5-72edd9f180e1 + - c1942670-8d93-4850-a85f-9c907dd7aa4f status: 200 OK code: 200 - duration: 240.49325ms + duration: 75.020625ms - 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/8f01ab20-ce56-4e12-a173-4a1a85cfebf7 method: GET response: proto: HTTP/2.0 @@ -1211,20 +1211,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2828 + content_length: 2894 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-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"}' headers: Content-Length: - - "2828" + - "2894" 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 13:13:54 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: @@ -1232,10 +1232,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 91b9e919-6df9-4879-9618-3c090a136c42 + - f77a2976-d3c8-456c-9e6f-6dd91dc50ff2 status: 200 OK code: 200 - duration: 128.853208ms + duration: 90.010125ms - 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/f9a060ce-e58b-41f8-99d8-19fafa96329e method: GET response: proto: HTTP/2.0 @@ -1260,20 +1260,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3247 + content_length: 3339 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-24T13:13:53.749787Z","description":"a description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:13:53.749787Z"}' headers: Content-Length: - - "3247" + - "3339" 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 13:13:55 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: @@ -1281,10 +1281,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92511b46-6159-41c6-a640-d1d14a4e21d5 + - b5428935-314c-4e40-a171-7f5f7941ef8c status: 200 OK code: 200 - duration: 109.90025ms + duration: 102.779042ms - 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/61375f77-5d7c-4809-92e2-1f37c5ccbed1 method: GET response: proto: HTTP/2.0 @@ -1309,20 +1309,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 322 + content_length: 324 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":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "322" + - "324" 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 13:13:55 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: @@ -1330,10 +1330,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1715d9e1-78a5-4003-9a3c-9266cd2bcac2 + - ec8560fc-7a05-4bd0-9a4a-a05ab6a29842 status: 200 OK code: 200 - duration: 57.401875ms + duration: 44.858125ms - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d method: GET response: proto: HTTP/2.0 @@ -1358,20 +1358,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1062 + content_length: 1064 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-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:54.141984Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"}' headers: Content-Length: - - "1062" + - "1064" 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 13:13:55 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: @@ -1379,10 +1379,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e096329b-911a-45a0-950f-70f9d0378b40 + - ce525580-5496-4ef4-82d7-bc440935ad89 status: 200 OK code: 200 - duration: 177.403416ms + duration: 80.269083ms - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d method: GET response: proto: HTTP/2.0 @@ -1407,20 +1407,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1062 + content_length: 1064 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-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:54.141984Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"}' headers: Content-Length: - - "1062" + - "1064" 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 13:13:55 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: @@ -1428,10 +1428,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0efb8418-a32f-4962-964c-01e8df95d741 + - b5758393-0f12-445b-8a7f-ce7a9525de4a status: 200 OK code: 200 - duration: 89.953834ms + duration: 68.453ms - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d/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 13:13:55 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: @@ -1477,10 +1477,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 49cb8c06-cdf1-4327-99f5-7e2c4112dd20 + - 73fe624c-fb85-4b6a-bac0-2fc4f2b05c0f status: 200 OK code: 200 - duration: 78.54075ms + duration: 51.925875ms - 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/c6537c0e-edf2-4179-ba8e-86ffd42cc8bb method: GET response: proto: HTTP/2.0 @@ -1505,20 +1505,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + content_length: 1907 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-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:54.141984Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"}' headers: Content-Length: - - "1899" + - "1907" 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 13:13:55 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: @@ -1526,10 +1526,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8db3dd8f-3b12-484b-a7a2-7a3e8577bfa3 + - 154e291f-cef7-4b6d-947f-059992101d14 status: 200 OK code: 200 - duration: 89.621917ms + duration: 84.800333ms - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d method: GET response: proto: HTTP/2.0 @@ -1554,20 +1554,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1062 + content_length: 1064 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-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:54.141984Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"}' headers: Content-Length: - - "1062" + - "1064" 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 13:13:55 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: @@ -1575,10 +1575,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11784c57-793f-4f3d-b967-0c790947929b + - 71100273-767d-4ece-afcc-7f4267af641c status: 200 OK code: 200 - duration: 99.648375ms + duration: 80.410334ms - 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/8f01ab20-ce56-4e12-a173-4a1a85cfebf7 method: GET response: proto: HTTP/2.0 @@ -1603,20 +1603,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2828 + content_length: 2894 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-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"}' headers: Content-Length: - - "2828" + - "2894" 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 13:13:55 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: @@ -1624,10 +1624,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec2b1ee7-1755-4428-a5b8-70a2f16ab229 + - f58b72c9-2fe6-4765-9cd3-1b9d406030dc status: 200 OK code: 200 - duration: 262.160041ms + duration: 98.806083ms - 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/f9a060ce-e58b-41f8-99d8-19fafa96329e method: GET response: proto: HTTP/2.0 @@ -1652,20 +1652,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3247 + content_length: 3339 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-24T13:13:53.749787Z","description":"a description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:13:53.749787Z"}' headers: Content-Length: - - "3247" + - "3339" 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 13:13:55 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: @@ -1673,29 +1673,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6caa38e7-5bd9-4869-863c-56efbfae2d80 + - a721628f-c8db-4655-8c5d-55d40fa319f9 status: 200 OK code: 200 - duration: 142.066042ms + duration: 97.739792ms - 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/f9a060ce-e58b-41f8-99d8-19fafa96329e method: PUT response: proto: HTTP/2.0 @@ -1703,20 +1703,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3435 + content_length: 3527 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-24T13:13:53.749787Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-24T13:13:56.264114571Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:13:56.242112148Z"}' headers: Content-Length: - - "3435" + - "3527" 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 13:13:56 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: @@ -1724,10 +1724,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9cb65cf6-6ca9-4ca4-8930-c5c2a1ed7d02 + - 1761ea6e-600e-4a5b-a9ce-683fbf16d1a1 status: 200 OK code: 200 - duration: 340.885917ms + duration: 393.877208ms - 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/f9a060ce-e58b-41f8-99d8-19fafa96329e method: GET response: proto: HTTP/2.0 @@ -1752,20 +1752,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3227 + content_length: 3319 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-24T13:13:53.749787Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:13:56.242112Z"}' headers: Content-Length: - - "3227" + - "3319" 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 13:13:56 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: @@ -1773,10 +1773,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3029138f-168c-4154-93ba-e5bf03d9502e + - 5d3db689-f618-4607-9943-49e8a3dc7fb5 status: 200 OK code: 200 - duration: 126.136125ms + duration: 103.979125ms - 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/f9a060ce-e58b-41f8-99d8-19fafa96329e method: GET response: proto: HTTP/2.0 @@ -1801,20 +1801,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3227 + content_length: 3319 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-24T13:13:53.749787Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:13:56.242112Z"}' headers: Content-Length: - - "3227" + - "3319" 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 13:13:56 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: @@ -1822,10 +1822,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d6f9f8b-9392-4e28-ad63-d4d6d18921c3 + - ecda55dc-02f6-4469-8447-94ba78a8f7c2 status: 200 OK code: 200 - duration: 152.091834ms + duration: 99.311833ms - 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/61375f77-5d7c-4809-92e2-1f37c5ccbed1 method: GET response: proto: HTTP/2.0 @@ -1850,20 +1850,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 322 + content_length: 324 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":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "322" + - "324" 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 13:13:57 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: @@ -1871,10 +1871,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e428abf1-e45c-466b-9678-7dfb0ed200dc + - a5420b54-b532-4e2f-9e33-d4f56f0cd2c7 status: 200 OK code: 200 - duration: 67.918125ms + duration: 124.041167ms - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d method: GET response: proto: HTTP/2.0 @@ -1901,7 +1901,7 @@ interactions: trailer: {} content_length: 1064 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-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:56.704658Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"}' headers: Content-Length: - "1064" @@ -1910,9 +1910,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:29 GMT + - Tue, 24 Jun 2025 13:13:57 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: @@ -1920,10 +1920,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ae78a5d-fcfe-45c3-a7a7-f60dc9526491 + - 9207e8f2-6fcb-4f92-8b26-35409b1b27f1 status: 200 OK code: 200 - duration: 121.457ms + duration: 93.826ms - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d method: GET response: proto: HTTP/2.0 @@ -1950,7 +1950,7 @@ interactions: trailer: {} content_length: 1064 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-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:56.704658Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"}' headers: Content-Length: - "1064" @@ -1959,9 +1959,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:29 GMT + - Tue, 24 Jun 2025 13:13:57 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: @@ -1969,10 +1969,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33b5758b-c8f7-4426-b722-f5c7656bb70f + - af3e4b0d-3751-40f1-abb6-b8cfa0bd6326 status: 200 OK code: 200 - duration: 99.813416ms + duration: 58.741208ms - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d/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 13:13:57 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: @@ -2018,10 +2018,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5e68291-7500-4f7f-b8e7-12ed862bf4af + - 83cda09b-d20b-479b-b38b-7c155d231c99 status: 200 OK code: 200 - duration: 80.736ms + duration: 54.032167ms - 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/c6537c0e-edf2-4179-ba8e-86ffd42cc8bb method: GET response: proto: HTTP/2.0 @@ -2046,20 +2046,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1901 + content_length: 1907 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-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:56.704658Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"}' headers: Content-Length: - - "1901" + - "1907" 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 13:13:57 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: @@ -2067,10 +2067,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ecbd9073-ebec-4212-a1dc-96716c741442 + - 9ebccfd9-4d3f-4e8e-b914-9f81cb9af0d5 status: 200 OK code: 200 - duration: 107.525167ms + duration: 70.748333ms - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d method: GET response: proto: HTTP/2.0 @@ -2097,7 +2097,7 @@ interactions: trailer: {} content_length: 1064 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-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:56.704658Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"}' headers: Content-Length: - "1064" @@ -2106,9 +2106,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:30 GMT + - Tue, 24 Jun 2025 13:13:57 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: @@ -2116,10 +2116,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d5d3168-9921-488d-b20c-9c7c987a126d + - 7b05019d-4d6a-4303-983b-a441e2a61db1 status: 200 OK code: 200 - duration: 88.975541ms + duration: 70.821833ms - 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/8f01ab20-ce56-4e12-a173-4a1a85cfebf7 method: GET response: proto: HTTP/2.0 @@ -2144,20 +2144,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2828 + content_length: 2894 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-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"}' headers: Content-Length: - - "2828" + - "2894" 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 13:13:57 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: @@ -2165,10 +2165,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c587e87-a82b-4b18-a5ef-772de4b6e58c + - 8b95c52a-d1fa-4110-abee-9e1cea6e84d3 status: 200 OK code: 200 - duration: 116.788333ms + duration: 76.51525ms - 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/f9a060ce-e58b-41f8-99d8-19fafa96329e method: GET response: proto: HTTP/2.0 @@ -2193,20 +2193,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3227 + content_length: 3319 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-24T13:13:53.749787Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:13:56.242112Z"}' headers: Content-Length: - - "3227" + - "3319" 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 13:13:57 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: @@ -2214,10 +2214,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1561b20-f152-4cff-a74b-3dcffc5c47c8 + - c98aeef4-1409-424e-9f4d-297b3c121739 status: 200 OK code: 200 - duration: 205.320667ms + duration: 85.031583ms - 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/61375f77-5d7c-4809-92e2-1f37c5ccbed1 method: GET response: proto: HTTP/2.0 @@ -2242,20 +2242,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 322 + content_length: 324 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":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "322" + - "324" 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 13:13:57 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: @@ -2263,10 +2263,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f371c893-ec9d-4e56-960c-0348b9320698 + - bf8a1625-53d3-4c49-9fe3-b6e2c6c68226 status: 200 OK code: 200 - duration: 88.741625ms + duration: 48.635916ms - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d method: GET response: proto: HTTP/2.0 @@ -2291,20 +2291,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1062 + content_length: 1064 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-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:56.704658Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"}' headers: Content-Length: - - "1062" + - "1064" 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 13:13:58 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: @@ -2312,10 +2312,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 021cb602-bb3d-4cbc-820f-ef42b6e62794 + - fc593a43-f561-4d28-850a-da6bb1ce73b4 status: 200 OK code: 200 - duration: 99.001083ms + duration: 79.310208ms - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d method: GET response: proto: HTTP/2.0 @@ -2340,20 +2340,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + content_length: 1064 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-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:56.704658Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"}' headers: Content-Length: - - "1899" + - "1064" 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 13:13:58 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: @@ -2361,10 +2361,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ab33db2-11a6-4204-8de7-abc9794669fb + - 81ad8dfc-660c-4c6f-9833-398a02c5cc4c status: 200 OK code: 200 - duration: 103.036209ms + duration: 81.52675ms - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d/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 13:13:58 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: @@ -2410,10 +2410,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d60a0b9d-6cc2-476f-a9b4-cc48bd1b29a1 + - d4ee55cf-6f5c-446a-bd49-e423c24710a7 status: 200 OK code: 200 - duration: 111.493666ms + duration: 57.578417ms - 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/c6537c0e-edf2-4179-ba8e-86ffd42cc8bb method: GET response: proto: HTTP/2.0 @@ -2438,20 +2438,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2828 + content_length: 1907 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-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:56.704658Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"}' headers: Content-Length: - - "2828" + - "1907" 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 13:13:58 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: @@ -2459,10 +2459,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92ecfa8f-88de-498e-82d1-467c0a8b09a8 + - 23615832-dab1-4255-a4d5-cfbf64e36975 status: 200 OK code: 200 - duration: 122.958709ms + duration: 76.4ms - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d method: GET response: proto: HTTP/2.0 @@ -2487,20 +2487,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 38 + content_length: 1064 uncompressed: false - body: '{"private_network":[],"total_count":0}' + body: '{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:56.704658Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"}' headers: Content-Length: - - "38" + - "1064" 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 13:13:58 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: @@ -2508,10 +2508,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 519e5f97-0c4e-464d-a116-8fee07405fd8 + - 19ee80c7-5072-4758-9d61-61c906a5b1c1 status: 200 OK code: 200 - duration: 68.782666ms + duration: 62.659333ms - 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/8f01ab20-ce56-4e12-a173-4a1a85cfebf7 method: GET response: proto: HTTP/2.0 @@ -2536,20 +2536,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1062 + content_length: 2894 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-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"}' headers: Content-Length: - - "1062" + - "2894" 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 13:13:58 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: @@ -2557,10 +2557,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9093d2fb-39fa-4189-b9ea-7f8447297c02 + - 26f397e1-3ccc-465b-8548-ef55651c7d10 status: 200 OK code: 200 - duration: 91.742417ms + duration: 99.506541ms - 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/f9a060ce-e58b-41f8-99d8-19fafa96329e method: GET response: proto: HTTP/2.0 @@ -2585,20 +2585,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1062 + content_length: 3319 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-24T13:13:53.749787Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:13:56.242112Z"}' headers: Content-Length: - - "1062" + - "3319" 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 13:13:58 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: @@ -2606,46 +2606,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6841f8e2-5f54-4050-ae77-4ebbec353ca7 + - f32eef34-4606-412f-a463-0da994fb3554 status: 200 OK code: 200 - duration: 86.553917ms + duration: 117.963125ms - 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/f9a060ce-e58b-41f8-99d8-19fafa96329e + method: PUT response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 3526 uncompressed: false - body: "" + body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T13:13:53.749787Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-24T13:13:58.909472820Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:13:58.888409036Z"}' headers: + Content-Length: + - "3526" 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 13:13:59 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: @@ -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 + - 083dcda8-fa63-4224-8e1e-c6446151cf14 + status: 200 OK + code: 200 + duration: 328.072ms - 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/f9a060ce-e58b-41f8-99d8-19fafa96329e + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 3318 uncompressed: false - body: "" + body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T13:13:53.749787Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:13:58.888409Z"}' headers: + Content-Length: + - "3318" 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 13:13:59 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: @@ -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 + - bee25754-0f6e-4ff2-9ba5-427e565bf804 + status: 200 OK + code: 200 + duration: 107.889666ms - 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/f9a060ce-e58b-41f8-99d8-19fafa96329e method: GET response: proto: HTTP/2.0 @@ -2728,20 +2734,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 3318 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-24T13:13:53.749787Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:13:58.888409Z"}' headers: Content-Length: - - "1064" + - "3318" 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 13:13:59 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: @@ -2749,10 +2755,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c488675a-4ddf-417e-989e-ab0c072aa726 + - 61064407-1b62-4c68-a90d-726953772b55 status: 200 OK code: 200 - duration: 133.321875ms + duration: 187.14575ms - 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/61375f77-5d7c-4809-92e2-1f37c5ccbed1 method: GET response: proto: HTTP/2.0 @@ -2777,20 +2783,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 324 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":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "1064" + - "324" 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 13:13:59 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: @@ -2798,10 +2804,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9a3afa2-80ee-438d-9b12-fac3cd13aaec + - 993f29f4-2231-4e90-ad83-b7ee40a1e6fc status: 200 OK code: 200 - duration: 120.683958ms + duration: 45.505916ms - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 1064 uncompressed: false - body: "" + body: '{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:59.337480Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"}' headers: + Content-Length: + - "1064" 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 13:13:59 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: @@ -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 + - be32f6b4-962b-4e8f-a4e5-c6fff6c189f0 + status: 200 OK + code: 200 + duration: 67.332834ms - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d method: GET response: proto: HTTP/2.0 @@ -2875,7 +2883,7 @@ interactions: trailer: {} content_length: 1064 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-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:59.337480Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"}' headers: Content-Length: - "1064" @@ -2884,9 +2892,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:09:33 GMT + - Tue, 24 Jun 2025 13:13:59 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: @@ -2894,10 +2902,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95777d03-3c3d-4df9-8217-100be2016a3a + - 819026c2-d970-4ba9-ad8b-b71338db74a5 status: 200 OK code: 200 - duration: 109.223125ms + duration: 70.419667ms - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d/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 13:13:59 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: @@ -2943,10 +2951,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30ac6657-7eb0-4cf7-ba0c-aad32502533e + - 449c1a5b-9738-4d98-992c-ccf07ce2d11c status: 200 OK code: 200 - duration: 129.27925ms + duration: 59.725083ms - 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/c6537c0e-edf2-4179-ba8e-86ffd42cc8bb + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 1907 uncompressed: false - body: "" + body: '{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:59.337480Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"}' headers: + Content-Length: + - "1907" 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 13:14:00 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: @@ -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 + - e782075a-fe02-4437-ad8c-02758d947872 + status: 200 OK + code: 200 + duration: 94.716458ms - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d method: GET response: proto: HTTP/2.0 @@ -3018,20 +3028,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1066 + content_length: 1064 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-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:59.337480Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"}' headers: Content-Length: - - "1066" + - "1064" 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 13:14:00 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: @@ -3039,10 +3049,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 284c8efb-26ef-413b-a8b6-157a42ec01b0 + - 30227335-d578-4a98-af85-048aea8f9427 status: 200 OK code: 200 - duration: 89.170458ms + duration: 66.725ms - 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/8f01ab20-ce56-4e12-a173-4a1a85cfebf7 method: GET response: proto: HTTP/2.0 @@ -3067,20 +3077,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 27 + content_length: 2894 uncompressed: false - body: '{"message":"lbs not Found"}' + body: '{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"}' headers: Content-Length: - - "27" + - "2894" 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 13:14:00 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: @@ -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 + - 4c2e2622-428d-4dc1-8565-a55326c0f2d1 + status: 200 OK + code: 200 + duration: 88.832875ms - 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/f9a060ce-e58b-41f8-99d8-19fafa96329e method: GET response: proto: HTTP/2.0 @@ -3116,20 +3126,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 27 + content_length: 3318 uncompressed: false - body: '{"message":"lbs not Found"}' + body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T13:13:53.749787Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:13:58.888409Z"}' headers: Content-Length: - - "27" + - "3318" 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 13:14:00 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: @@ -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 + - df92464d-3e9d-4071-86f1-ef3b8d91e9a3 + status: 200 OK + code: 200 + duration: 108.472375ms - 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/61375f77-5d7c-4809-92e2-1f37c5ccbed1 method: GET response: proto: HTTP/2.0 @@ -3165,20 +3175,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 288 + content_length: 324 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":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "288" + - "324" 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 13:14:00 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: @@ -3186,10 +3196,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 473dfc67-7290-4f60-9594-5d5c099e304e + - 7ad2f8bd-ae5a-4163-8bac-66330335562b status: 200 OK code: 200 - duration: 70.06275ms + duration: 43.237375ms - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d method: GET response: proto: HTTP/2.0 @@ -3214,20 +3224,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 288 + content_length: 1064 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-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:59.337480Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"}' headers: Content-Length: - - "288" + - "1064" 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 13:14:00 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: @@ -3235,10 +3245,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf4438c9-d345-4d65-9d83-83eee16a1206 + - e67c9ce9-e8c6-4c31-830d-aa9db4660387 status: 200 OK code: 200 - duration: 63.621916ms + duration: 65.260875ms - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1064 + uncompressed: false + body: '{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:59.337480Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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 13:14:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 95840d90-425e-43ba-86e1-41d3717e17a2 + status: 200 OK + code: 200 + duration: 72.790875ms + - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d/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 13:14:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ddaf9c8e-5d68-480d-a41c-781aeb7a59b2 + status: 200 OK + code: 200 + duration: 57.144667ms + - 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/c6537c0e-edf2-4179-ba8e-86ffd42cc8bb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1907 + uncompressed: false + body: '{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:59.337480Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"}' + headers: + Content-Length: + - "1907" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 13:14:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9dbe7577-a4cd-4308-a75c-ac3005e9d137 + status: 200 OK + code: 200 + duration: 95.268834ms + - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1064 + uncompressed: false + body: '{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:59.337480Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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 13:14:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1f87059e-4ed7-4c35-804a-acf06a213a1a + status: 200 OK + code: 200 + duration: 71.788834ms + - 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/8f01ab20-ce56-4e12-a173-4a1a85cfebf7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2894 + uncompressed: false + body: '{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"}' + headers: + Content-Length: + - "2894" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 13:14:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0fd212d0-0fba-4785-a862-745c889613e1 + status: 200 OK + code: 200 + duration: 94.20425ms + - 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/f9a060ce-e58b-41f8-99d8-19fafa96329e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 3318 + uncompressed: false + body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T13:13:53.749787Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:13:58.888409Z"}' + headers: + Content-Length: + - "3318" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 13:14:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f10eb0cb-d558-4289-9ff2-a738857f39e8 + status: 200 OK + code: 200 + duration: 103.849917ms + - 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/f9a060ce-e58b-41f8-99d8-19fafa96329e + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 3527 + uncompressed: false + body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T13:13:53.749787Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-24T13:14:01.538344477Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:14:01.518633040Z"}' + headers: + Content-Length: + - "3527" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 13:14:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d4e6a5fc-29c5-4602-b0d6-248de88f32ae + status: 200 OK + code: 200 + duration: 293.02825ms + - 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/f9a060ce-e58b-41f8-99d8-19fafa96329e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 3319 + uncompressed: false + body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T13:13:53.749787Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:14:01.518633Z"}' + headers: + Content-Length: + - "3319" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 13:14:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 81b55455-217d-44cb-98e0-71e7dd600c0d + status: 200 OK + code: 200 + duration: 85.933209ms + - 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/f9a060ce-e58b-41f8-99d8-19fafa96329e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 3319 + uncompressed: false + body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T13:13:53.749787Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:14:01.518633Z"}' + headers: + Content-Length: + - "3319" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 13:14:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 396fbea3-2e1b-4376-b1ce-1a98e72c6ad0 + status: 200 OK + code: 200 + duration: 204.600917ms + - 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/61375f77-5d7c-4809-92e2-1f37c5ccbed1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 324 + uncompressed: false + body: '{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + headers: + Content-Length: + - "324" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 13:14:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ecef2390-08c3-4922-a8c0-560bc9cf7b53 + status: 200 OK + code: 200 + duration: 44.081958ms + - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1064 + uncompressed: false + body: '{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:14:01.926188Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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 13:14:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d6754fc2-d872-4084-9c98-f11dfeabb8ae + status: 200 OK + code: 200 + duration: 83.287125ms + - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1064 + uncompressed: false + body: '{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:14:01.926188Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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 13:14:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4c1aa3f9-c345-4a10-8821-23dba8ea1b9d + status: 200 OK + code: 200 + duration: 62.275125ms + - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d/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 13:14:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 96989ee5-e4cd-40b3-a4bd-6b98bd2b24f7 + status: 200 OK + code: 200 + duration: 94.399833ms + - 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/c6537c0e-edf2-4179-ba8e-86ffd42cc8bb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1907 + uncompressed: false + body: '{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:14:01.926188Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"}' + headers: + Content-Length: + - "1907" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 13:14:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cf6e103b-c75b-4273-bfed-6dd4abdb3941 + status: 200 OK + code: 200 + duration: 101.62ms + - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1064 + uncompressed: false + body: '{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:14:01.926188Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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 13:14:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 37a3950a-85bb-43ec-b21d-3ee5116bd23d + status: 200 OK + code: 200 + duration: 69.963875ms + - 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/8f01ab20-ce56-4e12-a173-4a1a85cfebf7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2894 + uncompressed: false + body: '{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"}' + headers: + Content-Length: + - "2894" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 13:14:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cf3aa326-033b-42e3-9145-f5a6833ab513 + status: 200 OK + code: 200 + duration: 107.412708ms + - 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/f9a060ce-e58b-41f8-99d8-19fafa96329e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 3319 + uncompressed: false + body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T13:13:53.749787Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:14:01.518633Z"}' + headers: + Content-Length: + - "3319" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 13:14:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7d3412b4-c56b-43bd-b2a8-9fe6247503a9 + status: 200 OK + code: 200 + duration: 103.441875ms + - 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/61375f77-5d7c-4809-92e2-1f37c5ccbed1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 324 + uncompressed: false + body: '{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + headers: + Content-Length: + - "324" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 13:14:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 57ed1b24-ff1e-4c0f-a4e8-293d788a38b5 + status: 200 OK + code: 200 + duration: 55.173583ms + - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1064 + uncompressed: false + body: '{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:14:01.926188Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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 13:14:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5fcfc590-1d69-47ad-8d28-8f832e2b3ba4 + status: 200 OK + code: 200 + duration: 68.148917ms + - 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/c6537c0e-edf2-4179-ba8e-86ffd42cc8bb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1907 + uncompressed: false + body: '{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:14:01.926188Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"}' + headers: + Content-Length: + - "1907" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 13:14:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3b9f7c8d-dc9e-43b5-bff0-3e0033e67fc7 + status: 200 OK + code: 200 + duration: 79.01375ms + - 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/acls/f9a060ce-e58b-41f8-99d8-19fafa96329e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 3319 + uncompressed: false + body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T13:13:53.749787Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:14:01.518633Z"}' + headers: + Content-Length: + - "3319" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 13:14:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8b7d87f6-dbf7-42a4-8653-b531c0fd707f + status: 200 OK + code: 200 + duration: 97.960375ms + - 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/frontends/8f01ab20-ce56-4e12-a173-4a1a85cfebf7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2894 + uncompressed: false + body: '{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"}' + headers: + Content-Length: + - "2894" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 13:14:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 57418cb3-6b5f-450f-a23b-12e1d5aba961 + status: 200 OK + code: 200 + duration: 103.357791ms + - 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/lbs/bc188ea8-b63d-4448-af93-176c9aa8e16d/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 13:14:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7c8f125c-1223-4f8b-bb48-2b649a535465 + status: 200 OK + code: 200 + duration: 47.226417ms + - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1064 + uncompressed: false + body: '{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:14:01.926188Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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 13:14:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b2799236-14b2-4174-aba8-a726c3ea0880 + status: 200 OK + code: 200 + duration: 73.559ms + - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1064 + uncompressed: false + body: '{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:14:01.926188Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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 13:14:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 22ddff5a-4743-4a93-bdba-bad89db899cf + status: 200 OK + code: 200 + duration: 70.61275ms + - 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/f9a060ce-e58b-41f8-99d8-19fafa96329e + 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 13:14:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c3c343a2-c572-4ff4-b168-a0a95bbf949a + status: 204 No Content + code: 204 + duration: 380.185833ms + - 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/8f01ab20-ce56-4e12-a173-4a1a85cfebf7 + 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 13:14:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7db66514-191b-4176-9a4a-619882340e0c + status: 204 No Content + code: 204 + duration: 352.214292ms + - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1064 + uncompressed: false + body: '{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":0,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:14:04.065270Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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 13:14:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6afcbcc3-bf8c-4628-8f38-f670e5cefa4d + status: 200 OK + code: 200 + duration: 67.277291ms + - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1064 + uncompressed: false + body: '{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":0,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:14:04.065270Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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 13:14:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e7db0b6e-8c34-4ea4-bc5e-226dc56f134e + status: 200 OK + code: 200 + duration: 68.527666ms + - 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/c6537c0e-edf2-4179-ba8e-86ffd42cc8bb + 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 13:14:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 37ebbecc-adf9-4785-b241-4ac544d67d39 + status: 204 No Content + code: 204 + duration: 284.698041ms + - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1066 + uncompressed: false + body: '{"backend_count":0,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":0,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-24T13:14:04.569230Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1066" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 13:14:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6fa275c7-2d6f-4751-9ca6-1ae7e4c9b90c + status: 200 OK + code: 200 + duration: 66.515917ms + - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1066 + uncompressed: false + body: '{"backend_count":0,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":0,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-24T13:14:04.569230Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1066" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 13:14:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7c0613c9-7243-42d1-9497-b7b2394b31c2 + status: 200 OK + code: 200 + duration: 105.809208ms + - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d?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 13:14:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7efbb661-d745-4f3f-818d-62f507e1ff12 + status: 204 No Content + code: 204 + duration: 270.510792ms + - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1068 + uncompressed: false + body: '{"backend_count":0,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":0,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:14:04.885440Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:14:04.980951Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1068" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 13:14:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 50380085-567c-4034-add3-10f889524645 + status: 200 OK + code: 200 + duration: 70.834167ms + - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + 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 13:14:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2fa1e3ab-74aa-4bc2-9b5b-df7a63d4432c + status: 404 Not Found + code: 404 + duration: 30.545708ms + - 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + 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 13:14:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fc237b09-27f6-489e-80e7-e8303d9b942c + status: 404 Not Found + code: 404 + duration: 47.656875ms + - 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/61375f77-5d7c-4809-92e2-1f37c5ccbed1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 290 + uncompressed: false + body: '{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + headers: + Content-Length: + - "290" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 13:14:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0e96fcd2-367a-42be-904e-973a46b2ff92 + status: 200 OK + code: 200 + duration: 49.014875ms + - 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/61375f77-5d7c-4809-92e2-1f37c5ccbed1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 290 + uncompressed: false + body: '{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + headers: + Content-Length: + - "290" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 24 Jun 2025 13:14:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ca22f639-a843-4329-aacf-c89f737d8f38 + status: 200 OK + code: 200 + duration: 51.241459ms + - 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/61375f77-5d7c-4809-92e2-1f37c5ccbed1 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 13:14:36 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: @@ -3282,7 +5148,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 518565fc-a34a-4767-81b9-96616e52b895 + - 3eb9f5f9-787e-47f6-bb14-a2064c19a79d status: 204 No Content code: 204 - duration: 430.852333ms + duration: 331.483292ms diff --git a/internal/services/lb/types.go b/internal/services/lb/types.go index 36f3d36b79..1e509ec70b 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,51 @@ 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) bool { + rawConfig := d.GetRawConfig() + if rawConfig.IsNull() { + return false + } + + 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() +} + +func expandLbACLMatch(d *schema.ResourceData, raw any) *lb.ACLMatch { if raw == nil || len(raw.([]any)) != 1 { return nil } rawMap := raw.([]any)[0].(map[string]any) - - // 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 { + ipsEdgeServices := rawMap["ips_edge_services"].(bool) + ipSubnetConfigured := isIPSubnetConfigured(d) + + var ipSubnet []*string + if ipsEdgeServices { + ipSubnet = nil + } else if ipSubnetConfigured { + ipSubnet = types.ExpandSliceStringPtr(rawMap["ip_subnet"].([]any)) + } else { 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 +286,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) *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"]), Action: expandLbACLAction(rawRule["action"]), CreatedAt: types.ExpandTimePtr(rawRule["created_at"]), UpdatedAt: types.ExpandTimePtr(rawRule["updated_at"]), From 5569e5ac1d2263ffac4d56ede485c6333c9615c8 Mon Sep 17 00:00:00 2001 From: Yacine FODIL Date: Tue, 24 Jun 2025 15:58:05 +0200 Subject: [PATCH 2/5] fix --- docs/data-sources/lb_acls.md | 3 ++- internal/services/lb/acl.go | 8 +++----- internal/services/lb/types.go | 7 ++++--- 3 files changed, 9 insertions(+), 9 deletions(-) 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/internal/services/lb/acl.go b/internal/services/lb/acl.go index a0b7ec8eb3..4a27440c9c 100644 --- a/internal/services/lb/acl.go +++ b/internal/services/lb/acl.go @@ -110,7 +110,6 @@ func ResourceACL() *schema.Resource { Optional: true, Description: "A list of IPs or CIDR v4/v6 addresses of the client of the session to match", DiffSuppressFunc: diffSuppressFunc32SubnetMask, - ConflictsWith: []string{"ips_edge_services"}, }, "http_filter": { Type: schema.TypeString, @@ -138,10 +137,9 @@ func ResourceACL() *schema.Resource { 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`, - ConflictsWith: []string{"ip_subnet"}, + Type: schema.TypeBool, + Optional: true, + Description: `Defines whether Edge Services IPs should be matched`, }, }, }, diff --git a/internal/services/lb/types.go b/internal/services/lb/types.go index 1e509ec70b..fd7fbc59c2 100644 --- a/internal/services/lb/types.go +++ b/internal/services/lb/types.go @@ -98,11 +98,12 @@ func expandLbACLMatch(d *schema.ResourceData, raw any) *lb.ACLMatch { ipSubnetConfigured := isIPSubnetConfigured(d) var ipSubnet []*string - if ipsEdgeServices { + switch { + case ipsEdgeServices: ipSubnet = nil - } else if ipSubnetConfigured { + case ipSubnetConfigured: ipSubnet = types.ExpandSliceStringPtr(rawMap["ip_subnet"].([]any)) - } else { + default: ipSubnet = []*string{types.ExpandStringPtr("0.0.0.0/0")} } From 181a44f6f01aba93411b2a3b0d76ed404f92ad3a Mon Sep 17 00:00:00 2001 From: Yacine FODIL Date: Tue, 24 Jun 2025 16:01:21 +0200 Subject: [PATCH 3/5] lint --- internal/services/lb/types.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/services/lb/types.go b/internal/services/lb/types.go index fd7fbc59c2..443d204c2e 100644 --- a/internal/services/lb/types.go +++ b/internal/services/lb/types.go @@ -98,6 +98,7 @@ func expandLbACLMatch(d *schema.ResourceData, raw any) *lb.ACLMatch { ipSubnetConfigured := isIPSubnetConfigured(d) var ipSubnet []*string + switch { case ipsEdgeServices: ipSubnet = nil From 5962287f739aa6208e712024f091213491179029 Mon Sep 17 00:00:00 2001 From: Yacine FODIL Date: Tue, 24 Jun 2025 16:44:49 +0200 Subject: [PATCH 4/5] support acl from frontend resource too --- internal/services/lb/acl.go | 4 +- internal/services/lb/frontend.go | 9 +- .../lb/testdata/acl-basic.cassette.yaml | 1584 ++++++++--------- .../testdata/frontend-acl-basic.cassette.yaml | 1442 +++++++-------- internal/services/lb/types.go | 55 +- 5 files changed, 1564 insertions(+), 1530 deletions(-) diff --git a/internal/services/lb/acl.go b/internal/services/lb/acl.go index 4a27440c9c..062fc01220 100644 --- a/internal/services/lb/acl.go +++ b/internal/services/lb/acl.go @@ -174,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, d.Get("match")), + Match: expandLbACLMatch(d, d.Get("match"), 0), Index: int32(d.Get("index").(int)), Description: d.Get("description").(string), } @@ -236,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, d.Get("match")), + Match: expandLbACLMatch(d, d.Get("match"), 0), Description: types.ExpandUpdatedStringPtr(d.Get("description")), } diff --git a/internal/services/lb/frontend.go b/internal/services/lb/frontend.go index e2b895ad10..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`, + }, }, }, }, @@ -445,8 +450,8 @@ func expandsLBACLs(d *schema.ResourceData, raw any) []*lbSDK.ACL { r := raw.([]any) newACL := make([]*lbSDK.ACL, 0) - for _, rawACL := range r { - newACL = append(newACL, expandLbACL(d, 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 be1b80abed..9af6315017 100644 --- a/internal/services/lb/testdata/acl-basic.cassette.yaml +++ b/internal/services/lb/testdata/acl-basic.cassette.yaml @@ -27,18 +27,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 290 + content_length: 286 uncompressed: false - body: '{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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: - - Tue, 24 Jun 2025 13:13:21 GMT + - Tue, 24 Jun 2025 14:41:46 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9fd9d746-6c6e-48f9-ab12-971dcf2bc333 + - 2ee22122-de51-46db-9c40-2b9d201a3e01 status: 200 OK code: 200 - duration: 268.129292ms + duration: 224.717583ms - id: 1 request: proto: HTTP/1.1 @@ -68,7 +68,7 @@ interactions: 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/61375f77-5d7c-4809-92e2-1f37c5ccbed1 + 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,18 +76,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 290 + content_length: 286 uncompressed: false - body: '{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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: - - Tue, 24 Jun 2025 13:13:21 GMT + - Tue, 24 Jun 2025 14:41:46 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9427867-c5d4-4dfe-9608-0c34dd60c709 + - 9b1903c3-3f67-4e2d-9467-2ba7fac5d4b0 status: 200 OK code: 200 - duration: 50.450833ms + duration: 46.027708ms - id: 2 request: proto: HTTP/1.1 @@ -112,7 +112,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-lb-acl","description":"","ip_id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","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: @@ -127,18 +127,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 874 + content_length: 870 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-06-24T13:13:21.732224039Z","description":"","frontend_count":0,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:21.732224039Z","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: - - "874" + - "870" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:21 GMT + - Tue, 24 Jun 2025 14:41:46 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -148,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb9ec995-6f32-4a72-8e91-1cdebd0ac42f + - 07b15bad-ea18-4caa-be33-8129b068dc98 status: 200 OK code: 200 - duration: 393.823375ms + duration: 426.844916ms - id: 3 request: proto: HTTP/1.1 @@ -168,7 +168,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + 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,18 +176,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 868 + content_length: 1065 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":0,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:21.732224Z","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: - - "868" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:22 GMT + - Tue, 24 Jun 2025 14:41:46 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -197,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 459f606d-e08d-4ab2-89e1-9940808e8152 + - 7db2ae60-e056-4272-81ed-03bfdfaf783d status: 200 OK code: 200 - duration: 64.4705ms + duration: 67.274375ms - id: 4 request: proto: HTTP/1.1 @@ -217,7 +217,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + 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,18 +225,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":0,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:23.810051Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:52 GMT + - Tue, 24 Jun 2025 14:42:17 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -246,10 +246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6bf893c-2feb-4ec0-b1fb-c1b3960bba0b + - a551a0ea-cdbb-4e73-9aa4-d1930281a2a3 status: 200 OK code: 200 - duration: 74.652792ms + duration: 75.757334ms - id: 5 request: proto: HTTP/1.1 @@ -266,7 +266,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + 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: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":0,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:23.810051Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:52 GMT + - Tue, 24 Jun 2025 14:42:17 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - d301975a-e54d-4eac-b301-4257413fe6de + - 6364b084-c354-4494-8576-c1053a9e2bfd status: 200 OK code: 200 - duration: 107.134166ms + duration: 109.258708ms - id: 6 request: proto: HTTP/1.1 @@ -315,7 +315,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d/private-networks?order_by=created_at_asc + 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: - - Tue, 24 Jun 2025 13:13:52 GMT + - Tue, 24 Jun 2025 14:42:17 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - 10676ab4-dfc6-48d7-bb11-f2ba3611864d + - 7c7a235a-5fea-4395-846f-e8108b1cc38c status: 200 OK code: 200 - duration: 65.397542ms + duration: 58.896208ms - id: 7 request: proto: HTTP/1.1 @@ -364,7 +364,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + 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: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":0,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:23.810051Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:52 GMT + - Tue, 24 Jun 2025 14:42:17 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - 365bad56-02d8-4da9-800f-f239e5c9c166 + - 285a34fb-3c19-4fb4-9c2a-3f57d6f9aac8 status: 200 OK code: 200 - duration: 63.897708ms + duration: 69.228917ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 614 + content_length: 606 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-lb-bkd-reverent-montalcini","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.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/bc188ea8-b63d-4448-af93-176c9aa8e16d/backends + 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: 1918 + content_length: 1906 uncompressed: false - body: '{"created_at":"2025-06-24T13:13:52.512355258Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":0,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-24T13:13:52.536665837Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355258Z"}' + 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: - - "1918" + - "1906" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:52 GMT + - Tue, 24 Jun 2025 14:42:17 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - 23f77209-d012-4f54-be2c-872c114762a7 + - 01f46226-cda8-4502-804b-454d77700e4d status: 200 OK code: 200 - duration: 317.686667ms + duration: 321.0125ms - id: 9 request: proto: HTTP/1.1 @@ -464,7 +464,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + 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: 1066 + content_length: 1062 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":0,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-24T13:13:52.536666Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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: - - "1066" + - "1062" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:52 GMT + - Tue, 24 Jun 2025 14:42:17 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - de5d420c-8884-4401-a356-538d654d08e1 + - 13aebb6e-19f6-4335-9b17-d86c167efa37 status: 200 OK code: 200 - duration: 68.081125ms + duration: 66.187666ms - id: 10 request: proto: HTTP/1.1 @@ -513,7 +513,7 @@ interactions: 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/c6537c0e-edf2-4179-ba8e-86ffd42cc8bb + 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: 1909 + content_length: 1897 uncompressed: false - body: '{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":0,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-24T13:13:52.536666Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"}' + 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: - - "1909" + - "1897" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:52 GMT + - Tue, 24 Jun 2025 14:42:17 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - 1370632e-6e0f-4b70-8c38-117b91f54bbb + - 89cc6e64-a54b-4e6c-912c-5722cfaf0f09 status: 200 OK code: 200 - duration: 85.012208ms + duration: 83.225667ms - id: 11 request: proto: HTTP/1.1 @@ -562,7 +562,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + 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-06-24T13:13:21.732224Z","description":"","frontend_count":0,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:52.902421Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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: - - Tue, 24 Jun 2025 13:13:52 GMT + - Tue, 24 Jun 2025 14:42:17 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - 264be070-427b-410d-9eea-8f3986c158c9 + - b1235152-af3c-46b5-b846-62769b7b3cb7 status: 200 OK code: 200 - duration: 84.809083ms + duration: 65.784208ms - id: 12 request: proto: HTTP/1.1 @@ -611,7 +611,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + 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-06-24T13:13:21.732224Z","description":"","frontend_count":0,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:52.902421Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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: - - Tue, 24 Jun 2025 13:13:53 GMT + - Tue, 24 Jun 2025 14:42:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -640,10 +640,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d36ca29b-f1b8-49be-b434-717542d7ce82 + - 5094f5f7-4fcd-4769-8390-be2c41fa6655 status: 200 OK code: 200 - duration: 64.151084ms + duration: 137.45725ms - id: 13 request: proto: HTTP/1.1 @@ -655,14 +655,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-test","inbound_port":80,"backend_id":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","enable_http3":false,"connection_rate_limit":0,"enable_access_logs":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.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/bc188ea8-b63d-4448-af93-176c9aa8e16d/frontends + 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: 3099 + content_length: 3083 uncompressed: false - body: '{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-24T13:13:53.277505597Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"}' + 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: - - "3099" + - "3083" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:53 GMT + - Tue, 24 Jun 2025 14:42:18 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - 905a3d75-7310-4eff-9baf-904712b54518 + - 54f986c9-c15a-4473-8ffa-1c55c34a07dd status: 200 OK code: 200 - duration: 422.044166ms + duration: 493.363417ms - id: 14 request: proto: HTTP/1.1 @@ -711,7 +711,7 @@ interactions: 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/8f01ab20-ce56-4e12-a173-4a1a85cfebf7 + 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: 2894 + content_length: 2878 uncompressed: false - body: '{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"}' + 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: - - "2894" + - "2878" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:53 GMT + - Tue, 24 Jun 2025 14:42:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -740,10 +740,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78bffdd5-47ce-4fa3-8495-64af9f9f71bd + - 8ee8b0d7-ad19-4ad5-bcaf-39e964565a5f status: 200 OK code: 200 - duration: 120.350167ms + duration: 110.612083ms - id: 15 request: proto: HTTP/1.1 @@ -762,7 +762,7 @@ interactions: - 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/frontends/8f01ab20-ce56-4e12-a173-4a1a85cfebf7/acls + 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: 3345 + content_length: 3329 uncompressed: false - body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T13:13:53.749786525Z","description":"a description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:13:53.749786525Z"}' + 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: - - "3345" + - "3329" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:53 GMT + - Tue, 24 Jun 2025 14:42:18 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - 0b2b3406-e85b-42e9-bec7-fae5a4f820e3 + - 1d8bc773-e8cf-47af-8064-42171dbf7655 status: 200 OK code: 200 - duration: 360.686291ms + duration: 362.231417ms - id: 16 request: proto: HTTP/1.1 @@ -811,7 +811,7 @@ interactions: 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/f9a060ce-e58b-41f8-99d8-19fafa96329e + 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: 3339 + content_length: 3323 uncompressed: false - body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T13:13:53.749787Z","description":"a description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:13:53.749787Z"}' + 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: - - "3339" + - "3323" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:54 GMT + - Tue, 24 Jun 2025 14:42:19 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - b2202e33-805b-4f41-91b1-e4b9e46d1253 + - e551073a-653c-4c17-bb21-149e6f1306d8 status: 200 OK code: 200 - duration: 108.008125ms + duration: 111.766417ms - id: 17 request: proto: HTTP/1.1 @@ -860,7 +860,7 @@ interactions: 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/f9a060ce-e58b-41f8-99d8-19fafa96329e + 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: 3339 + content_length: 3323 uncompressed: false - body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T13:13:53.749787Z","description":"a description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:13:53.749787Z"}' + 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: - - "3339" + - "3323" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:54 GMT + - Tue, 24 Jun 2025 14:42:19 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - 71500195-6e71-4990-94ae-300c703aace7 + - 686115a8-cc9f-4bb4-9928-179cf1ccf496 status: 200 OK code: 200 - duration: 91.639708ms + duration: 166.945833ms - id: 18 request: proto: HTTP/1.1 @@ -909,7 +909,7 @@ interactions: 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/61375f77-5d7c-4809-92e2-1f37c5ccbed1 + 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: 324 + content_length: 320 uncompressed: false - body: '{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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: - - "324" + - "320" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:54 GMT + - Tue, 24 Jun 2025 14:42:19 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - d9e59b81-9371-4da2-93fc-b0ef6af866d8 + - fe3029d2-ae66-4821-abc1-d74848880070 status: 200 OK code: 200 - duration: 40.95075ms + duration: 169.708625ms - id: 19 request: proto: HTTP/1.1 @@ -958,7 +958,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + 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: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:54.141984Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:54 GMT + - Tue, 24 Jun 2025 14:42:19 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - a303f79b-2502-4b4a-9572-d694a81b6341 + - b89d0e0f-f5fd-40a6-b816-497830e941c1 status: 200 OK code: 200 - duration: 66.015916ms + duration: 67.997416ms - id: 20 request: proto: HTTP/1.1 @@ -1007,7 +1007,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + 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: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:54.141984Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:54 GMT + - Tue, 24 Jun 2025 14:42:19 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - 7138bb8d-efbc-4677-9198-b7af1b9bfdff + - c5283884-7d0d-40f7-ad37-4c06e9b67fd2 status: 200 OK code: 200 - duration: 74.562917ms + duration: 67.954125ms - id: 21 request: proto: HTTP/1.1 @@ -1056,7 +1056,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d/private-networks?order_by=created_at_asc + 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: - - Tue, 24 Jun 2025 13:13:54 GMT + - Tue, 24 Jun 2025 14:42:19 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - ded43268-c9aa-4b80-a458-9d1cc44b940e + - d7173a63-0714-4ceb-b561-0e5a5dc0ede1 status: 200 OK code: 200 - duration: 55.574542ms + duration: 47.521958ms - id: 22 request: proto: HTTP/1.1 @@ -1105,7 +1105,7 @@ interactions: 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/c6537c0e-edf2-4179-ba8e-86ffd42cc8bb + 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: 1907 + content_length: 1895 uncompressed: false - body: '{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:54.141984Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"}' + 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: - - "1907" + - "1895" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:54 GMT + - Tue, 24 Jun 2025 14:42:19 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - 8870b7ed-bd34-453f-a419-1cba9417e294 + - fd16f07c-53a8-4a6d-8e7c-213d7d28f3cd status: 200 OK code: 200 - duration: 103.425833ms + duration: 89.166667ms - id: 23 request: proto: HTTP/1.1 @@ -1154,7 +1154,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + 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: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:54.141984Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:54 GMT + - Tue, 24 Jun 2025 14:42:20 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - c1942670-8d93-4850-a85f-9c907dd7aa4f + - fba79e0b-833a-4903-9f9b-18fc16a0a940 status: 200 OK code: 200 - duration: 75.020625ms + duration: 83.203791ms - id: 24 request: proto: HTTP/1.1 @@ -1203,7 +1203,7 @@ interactions: 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/8f01ab20-ce56-4e12-a173-4a1a85cfebf7 + 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: 2894 + content_length: 2878 uncompressed: false - body: '{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"}' + 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: - - "2894" + - "2878" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:54 GMT + - Tue, 24 Jun 2025 14:42:20 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - f77a2976-d3c8-456c-9e6f-6dd91dc50ff2 + - c123f85f-140d-47a3-9fa9-039be7376b4f status: 200 OK code: 200 - duration: 90.010125ms + duration: 111.840167ms - id: 25 request: proto: HTTP/1.1 @@ -1252,7 +1252,7 @@ interactions: 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/f9a060ce-e58b-41f8-99d8-19fafa96329e + 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: 3339 + content_length: 3323 uncompressed: false - body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T13:13:53.749787Z","description":"a description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:13:53.749787Z"}' + 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: - - "3339" + - "3323" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:55 GMT + - Tue, 24 Jun 2025 14:42:20 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - b5428935-314c-4e40-a171-7f5f7941ef8c + - c849c30c-ed59-496f-99f0-6bff1d756d6d status: 200 OK code: 200 - duration: 102.779042ms + duration: 104.271ms - id: 26 request: proto: HTTP/1.1 @@ -1301,7 +1301,7 @@ interactions: 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/61375f77-5d7c-4809-92e2-1f37c5ccbed1 + 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: 324 + content_length: 320 uncompressed: false - body: '{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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: - - "324" + - "320" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:55 GMT + - Tue, 24 Jun 2025 14:42:20 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - ec8560fc-7a05-4bd0-9a4a-a05ab6a29842 + - d70bd0dc-9e5d-4079-b863-9b2b2fcc0499 status: 200 OK code: 200 - duration: 44.858125ms + duration: 52.271791ms - id: 27 request: proto: HTTP/1.1 @@ -1350,7 +1350,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + 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: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:54.141984Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:55 GMT + - Tue, 24 Jun 2025 14:42:20 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - ce525580-5496-4ef4-82d7-bc440935ad89 + - f04510c2-bc54-4c65-8128-2c4de5de4c54 status: 200 OK code: 200 - duration: 80.269083ms + duration: 65.238417ms - id: 28 request: proto: HTTP/1.1 @@ -1399,7 +1399,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + 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: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:54.141984Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:55 GMT + - Tue, 24 Jun 2025 14:42:20 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - b5758393-0f12-445b-8a7f-ce7a9525de4a + - 2579f50b-2fd9-4ec1-87c5-c82cddd752ab status: 200 OK code: 200 - duration: 68.453ms + duration: 58.526417ms - id: 29 request: proto: HTTP/1.1 @@ -1448,7 +1448,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d/private-networks?order_by=created_at_asc + 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: - - Tue, 24 Jun 2025 13:13:55 GMT + - Tue, 24 Jun 2025 14:42:20 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - 73fe624c-fb85-4b6a-bac0-2fc4f2b05c0f + - d5543766-c8da-4a3f-8a69-ded393159835 status: 200 OK code: 200 - duration: 51.925875ms + duration: 72.808167ms - id: 30 request: proto: HTTP/1.1 @@ -1497,7 +1497,7 @@ interactions: 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/c6537c0e-edf2-4179-ba8e-86ffd42cc8bb + 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: 1907 + content_length: 1895 uncompressed: false - body: '{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:54.141984Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"}' + 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: - - "1907" + - "1895" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:55 GMT + - Tue, 24 Jun 2025 14:42:20 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - 154e291f-cef7-4b6d-947f-059992101d14 + - b3a3d476-d528-4df4-ae15-cc903f56058c status: 200 OK code: 200 - duration: 84.800333ms + duration: 84.286458ms - id: 31 request: proto: HTTP/1.1 @@ -1546,7 +1546,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + 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: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:54.141984Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:55 GMT + - Tue, 24 Jun 2025 14:42:20 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - 71100273-767d-4ece-afcc-7f4267af641c + - 73e17468-8c5f-4659-8e9c-606e6d4ccbfd status: 200 OK code: 200 - duration: 80.410334ms + duration: 72.9985ms - id: 32 request: proto: HTTP/1.1 @@ -1595,7 +1595,7 @@ interactions: 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/8f01ab20-ce56-4e12-a173-4a1a85cfebf7 + 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: 2894 + content_length: 2878 uncompressed: false - body: '{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"}' + 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: - - "2894" + - "2878" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:55 GMT + - Tue, 24 Jun 2025 14:42:21 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - f58b72c9-2fe6-4765-9cd3-1b9d406030dc + - 61a8c251-1fde-49f6-a6f1-3cb13f6b23eb status: 200 OK code: 200 - duration: 98.806083ms + duration: 89.233833ms - id: 33 request: proto: HTTP/1.1 @@ -1644,7 +1644,7 @@ interactions: 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/f9a060ce-e58b-41f8-99d8-19fafa96329e + 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: 3339 + content_length: 3323 uncompressed: false - body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2025-06-24T13:13:53.749787Z","description":"a description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:13:53.749787Z"}' + 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: - - "3339" + - "3323" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:55 GMT + - Tue, 24 Jun 2025 14:42:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1673,10 +1673,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a721628f-c8db-4655-8c5d-55d40fa319f9 + - 80f48dc6-1600-4b02-865f-f2adece9cf14 status: 200 OK code: 200 - duration: 97.739792ms + duration: 109.344708ms - id: 34 request: proto: HTTP/1.1 @@ -1695,7 +1695,7 @@ interactions: - 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/f9a060ce-e58b-41f8-99d8-19fafa96329e + 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: 3527 + content_length: 3511 uncompressed: false - body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T13:13:53.749787Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-24T13:13:56.264114571Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:13:56.242112148Z"}' + 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: - - "3527" + - "3511" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:56 GMT + - Tue, 24 Jun 2025 14:42:21 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - 1761ea6e-600e-4a5b-a9ce-683fbf16d1a1 + - a990132b-d078-44dd-beab-599cb66bd743 status: 200 OK code: 200 - duration: 393.877208ms + duration: 257.965791ms - id: 35 request: proto: HTTP/1.1 @@ -1744,7 +1744,7 @@ interactions: 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/f9a060ce-e58b-41f8-99d8-19fafa96329e + 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: 3319 + content_length: 3303 uncompressed: false - body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T13:13:53.749787Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:13:56.242112Z"}' + 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: - - "3319" + - "3303" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:56 GMT + - Tue, 24 Jun 2025 14:42:21 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - 5d3db689-f618-4607-9943-49e8a3dc7fb5 + - d90ade9c-77c1-453d-bc61-d0c566d600e7 status: 200 OK code: 200 - duration: 103.979125ms + duration: 91.984792ms - id: 36 request: proto: HTTP/1.1 @@ -1793,7 +1793,7 @@ interactions: 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/f9a060ce-e58b-41f8-99d8-19fafa96329e + 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: 3319 + content_length: 3303 uncompressed: false - body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T13:13:53.749787Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:13:56.242112Z"}' + 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: - - "3319" + - "3303" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:56 GMT + - Tue, 24 Jun 2025 14:42:21 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - ecda55dc-02f6-4469-8447-94ba78a8f7c2 + - 3d280576-b2b7-43f3-a7aa-7e1904c15e3c status: 200 OK code: 200 - duration: 99.311833ms + duration: 105.063417ms - id: 37 request: proto: HTTP/1.1 @@ -1842,7 +1842,7 @@ interactions: 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/61375f77-5d7c-4809-92e2-1f37c5ccbed1 + 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: 324 + content_length: 320 uncompressed: false - body: '{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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: - - "324" + - "320" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:57 GMT + - Tue, 24 Jun 2025 14:42:22 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - a5420b54-b532-4e2f-9e33-d4f56f0cd2c7 + - 652c13a1-1860-4694-b8fe-143f554e21f6 status: 200 OK code: 200 - duration: 124.041167ms + duration: 80.462209ms - id: 38 request: proto: HTTP/1.1 @@ -1891,7 +1891,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + 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-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:56.704658Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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: - - Tue, 24 Jun 2025 13:13:57 GMT + - Tue, 24 Jun 2025 14:42:22 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - 9207e8f2-6fcb-4f92-8b26-35409b1b27f1 + - d1884fb7-a203-4129-89f5-8dbfa065fc73 status: 200 OK code: 200 - duration: 93.826ms + duration: 66.85675ms - id: 39 request: proto: HTTP/1.1 @@ -1940,7 +1940,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + 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-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:56.704658Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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: - - Tue, 24 Jun 2025 13:13:57 GMT + - Tue, 24 Jun 2025 14:42:22 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - af3e4b0d-3751-40f1-abb6-b8cfa0bd6326 + - 6d7673c2-17f3-48f2-9868-5d9ee253b82b status: 200 OK code: 200 - duration: 58.741208ms + duration: 79.65375ms - id: 40 request: proto: HTTP/1.1 @@ -1989,7 +1989,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d/private-networks?order_by=created_at_asc + 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: - - Tue, 24 Jun 2025 13:13:57 GMT + - Tue, 24 Jun 2025 14:42:22 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - 83cda09b-d20b-479b-b38b-7c155d231c99 + - 37d05109-6259-473d-a12b-144253d24f5d status: 200 OK code: 200 - duration: 54.032167ms + duration: 51.378083ms - id: 41 request: proto: HTTP/1.1 @@ -2038,7 +2038,7 @@ interactions: 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/c6537c0e-edf2-4179-ba8e-86ffd42cc8bb + 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: 1907 + content_length: 1895 uncompressed: false - body: '{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:56.704658Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"}' + 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: - - "1907" + - "1895" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:57 GMT + - Tue, 24 Jun 2025 14:42:22 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - 9ebccfd9-4d3f-4e8e-b914-9f81cb9af0d5 + - e9c0747a-58af-4fd3-869b-672a1c4e32ca status: 200 OK code: 200 - duration: 70.748333ms + duration: 72.499375ms - id: 42 request: proto: HTTP/1.1 @@ -2087,7 +2087,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + 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-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:56.704658Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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: - - Tue, 24 Jun 2025 13:13:57 GMT + - Tue, 24 Jun 2025 14:42:22 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - 7b05019d-4d6a-4303-983b-a441e2a61db1 + - 32a80159-bbdc-481f-b194-eff6b8dc934a status: 200 OK code: 200 - duration: 70.821833ms + duration: 73.970084ms - id: 43 request: proto: HTTP/1.1 @@ -2136,7 +2136,7 @@ interactions: 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/8f01ab20-ce56-4e12-a173-4a1a85cfebf7 + 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: 2894 + content_length: 2878 uncompressed: false - body: '{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"}' + 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: - - "2894" + - "2878" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:57 GMT + - Tue, 24 Jun 2025 14:42:22 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - 8b95c52a-d1fa-4110-abee-9e1cea6e84d3 + - ad0837ce-d126-4c2a-b351-b49358ded1e0 status: 200 OK code: 200 - duration: 76.51525ms + duration: 86.230416ms - id: 44 request: proto: HTTP/1.1 @@ -2185,7 +2185,7 @@ interactions: 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/f9a060ce-e58b-41f8-99d8-19fafa96329e + 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: 3319 + content_length: 3303 uncompressed: false - body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T13:13:53.749787Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:13:56.242112Z"}' + 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: - - "3319" + - "3303" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:57 GMT + - Tue, 24 Jun 2025 14:42:22 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - c98aeef4-1409-424e-9f4d-297b3c121739 + - 0b602d6e-994a-483a-9255-0cff85ed8c59 status: 200 OK code: 200 - duration: 85.031583ms + duration: 100.673792ms - id: 45 request: proto: HTTP/1.1 @@ -2234,7 +2234,7 @@ interactions: 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/61375f77-5d7c-4809-92e2-1f37c5ccbed1 + 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: 324 + content_length: 320 uncompressed: false - body: '{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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: - - "324" + - "320" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:57 GMT + - Tue, 24 Jun 2025 14:42:22 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - bf8a1625-53d3-4c49-9fe3-b6e2c6c68226 + - 90ba3ad2-9a97-4526-aefe-50f73aacb6a9 status: 200 OK code: 200 - duration: 48.635916ms + duration: 49.86525ms - id: 46 request: proto: HTTP/1.1 @@ -2283,7 +2283,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + 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: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:56.704658Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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: - - Tue, 24 Jun 2025 13:13:58 GMT + - Tue, 24 Jun 2025 14:42:23 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - fc593a43-f561-4d28-850a-da6bb1ce73b4 + - 17484f5b-2a26-408e-9f04-6c1625c94439 status: 200 OK code: 200 - duration: 79.310208ms + duration: 92.138083ms - id: 47 request: proto: HTTP/1.1 @@ -2332,7 +2332,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + 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: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:56.704658Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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: - - Tue, 24 Jun 2025 13:13:58 GMT + - Tue, 24 Jun 2025 14:42:23 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - 81ad8dfc-660c-4c6f-9833-398a02c5cc4c + - 06c637a6-897a-4cdc-b306-b8ddc86294d0 status: 200 OK code: 200 - duration: 81.52675ms + duration: 73.231083ms - id: 48 request: proto: HTTP/1.1 @@ -2381,7 +2381,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d/private-networks?order_by=created_at_asc + 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 @@ -2400,9 +2400,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:58 GMT + - Tue, 24 Jun 2025 14:42:23 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - d4ee55cf-6f5c-446a-bd49-e423c24710a7 + - 2fd4fa50-b6a5-4c0b-ab69-706b0ebc4441 status: 200 OK code: 200 - duration: 57.578417ms + duration: 51.290541ms - id: 49 request: proto: HTTP/1.1 @@ -2430,7 +2430,7 @@ interactions: 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/c6537c0e-edf2-4179-ba8e-86ffd42cc8bb + 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: 1907 + content_length: 1895 uncompressed: false - body: '{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:56.704658Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"}' + 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: - - "1907" + - "1895" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:58 GMT + - Tue, 24 Jun 2025 14:42:23 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - 23615832-dab1-4255-a4d5-cfbf64e36975 + - 4da3b05e-dbd3-4b38-bf59-2d2a5d9b5a2e status: 200 OK code: 200 - duration: 76.4ms + duration: 78.78775ms - id: 50 request: proto: HTTP/1.1 @@ -2479,7 +2479,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + 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: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:56.704658Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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: - - Tue, 24 Jun 2025 13:13:58 GMT + - Tue, 24 Jun 2025 14:42:23 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - 19ee80c7-5072-4758-9d61-61c906a5b1c1 + - 60416f5b-a406-4a47-a45a-bbe434608049 status: 200 OK code: 200 - duration: 62.659333ms + duration: 65.543ms - id: 51 request: proto: HTTP/1.1 @@ -2528,7 +2528,7 @@ interactions: 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/8f01ab20-ce56-4e12-a173-4a1a85cfebf7 + 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: 2894 + content_length: 2878 uncompressed: false - body: '{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"}' + 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: - - "2894" + - "2878" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:58 GMT + - Tue, 24 Jun 2025 14:42:23 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - 26f397e1-3ccc-465b-8548-ef55651c7d10 + - b608f512-0260-4841-ad90-0907e48a014b status: 200 OK code: 200 - duration: 99.506541ms + duration: 78.621375ms - id: 52 request: proto: HTTP/1.1 @@ -2577,7 +2577,7 @@ interactions: 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/f9a060ce-e58b-41f8-99d8-19fafa96329e + 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: 3319 + content_length: 3303 uncompressed: false - body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T13:13:53.749787Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:13:56.242112Z"}' + 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: - - "3319" + - "3303" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:58 GMT + - Tue, 24 Jun 2025 14:42:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2606,10 +2606,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f32eef34-4606-412f-a463-0da994fb3554 + - b002578d-bf2b-4880-848a-1dcea54a0697 status: 200 OK code: 200 - duration: 117.963125ms + duration: 88.633333ms - id: 53 request: proto: HTTP/1.1 @@ -2628,7 +2628,7 @@ interactions: - 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/f9a060ce-e58b-41f8-99d8-19fafa96329e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/0812569a-083f-4b48-8f51-cf060520bf18 method: PUT response: proto: HTTP/2.0 @@ -2636,20 +2636,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3526 + content_length: 3510 uncompressed: false - body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T13:13:53.749787Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-24T13:13:58.909472820Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:13:58.888409036Z"}' + 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: - - "3526" + - "3510" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:59 GMT + - Tue, 24 Jun 2025 14:42:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2657,10 +2657,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 083dcda8-fa63-4224-8e1e-c6446151cf14 + - 721a46d2-3aae-406d-9262-8f8b3cf40a39 status: 200 OK code: 200 - duration: 328.072ms + duration: 348.45ms - id: 54 request: proto: HTTP/1.1 @@ -2677,7 +2677,7 @@ interactions: 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/f9a060ce-e58b-41f8-99d8-19fafa96329e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/0812569a-083f-4b48-8f51-cf060520bf18 method: GET response: proto: HTTP/2.0 @@ -2685,20 +2685,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3318 + content_length: 3302 uncompressed: false - body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T13:13:53.749787Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:13:58.888409Z"}' + 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: - - "3318" + - "3302" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:59 GMT + - Tue, 24 Jun 2025 14:42:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2706,10 +2706,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bee25754-0f6e-4ff2-9ba5-427e565bf804 + - edb282e1-6493-49c6-a29f-91887f6b608d status: 200 OK code: 200 - duration: 107.889666ms + duration: 113.6045ms - id: 55 request: proto: HTTP/1.1 @@ -2726,7 +2726,7 @@ interactions: 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/f9a060ce-e58b-41f8-99d8-19fafa96329e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/0812569a-083f-4b48-8f51-cf060520bf18 method: GET response: proto: HTTP/2.0 @@ -2734,20 +2734,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3318 + content_length: 3302 uncompressed: false - body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T13:13:53.749787Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:13:58.888409Z"}' + 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: - - "3318" + - "3302" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:59 GMT + - Tue, 24 Jun 2025 14:42:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2755,10 +2755,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61064407-1b62-4c68-a90d-726953772b55 + - 37144c6e-831b-4bfe-864a-f37716491719 status: 200 OK code: 200 - duration: 187.14575ms + duration: 95.308125ms - id: 56 request: proto: HTTP/1.1 @@ -2775,7 +2775,7 @@ interactions: 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/61375f77-5d7c-4809-92e2-1f37c5ccbed1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/706766e4-feb1-4724-ad81-658465d5a683 method: GET response: proto: HTTP/2.0 @@ -2783,20 +2783,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 324 + content_length: 320 uncompressed: false - body: '{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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: - - "324" + - "320" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:59 GMT + - Tue, 24 Jun 2025 14:42:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2804,10 +2804,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 993f29f4-2231-4e90-ad83-b7ee40a1e6fc + - 33a92697-5ba4-4e17-a207-f26929ad5cad status: 200 OK code: 200 - duration: 45.505916ms + duration: 65.904291ms - id: 57 request: proto: HTTP/1.1 @@ -2824,7 +2824,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -2832,20 +2832,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:59.337480Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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: - - Tue, 24 Jun 2025 13:13:59 GMT + - Tue, 24 Jun 2025 14:42:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2853,10 +2853,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be32f6b4-962b-4e8f-a4e5-c6fff6c189f0 + - a67d988c-a039-447e-96ef-05445139fbaa status: 200 OK code: 200 - duration: 67.332834ms + duration: 61.941292ms - id: 58 request: proto: HTTP/1.1 @@ -2873,7 +2873,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -2881,20 +2881,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:59.337480Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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: - - Tue, 24 Jun 2025 13:13:59 GMT + - Tue, 24 Jun 2025 14:42:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2902,10 +2902,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 819026c2-d970-4ba9-ad8b-b71338db74a5 + - c86e4e85-71e7-4753-82ce-2dc760f88878 status: 200 OK code: 200 - duration: 70.419667ms + duration: 67.159166ms - id: 59 request: proto: HTTP/1.1 @@ -2922,7 +2922,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d/private-networks?order_by=created_at_asc + 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 @@ -2941,9 +2941,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:13:59 GMT + - Tue, 24 Jun 2025 14:42:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2951,10 +2951,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 449c1a5b-9738-4d98-992c-ccf07ce2d11c + - c6ed3ef9-ace7-4adb-99b0-99e123586876 status: 200 OK code: 200 - duration: 59.725083ms + duration: 53.633917ms - id: 60 request: proto: HTTP/1.1 @@ -2971,7 +2971,7 @@ interactions: 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/c6537c0e-edf2-4179-ba8e-86ffd42cc8bb + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/cf38f32b-9b7d-4daa-a07d-5b1778508c91 method: GET response: proto: HTTP/2.0 @@ -2979,20 +2979,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1907 + content_length: 1895 uncompressed: false - body: '{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:59.337480Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"}' + 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: - - "1907" + - "1895" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:00 GMT + - Tue, 24 Jun 2025 14:42:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3000,10 +3000,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e782075a-fe02-4437-ad8c-02758d947872 + - acf8bd1c-f99e-4a44-8aa7-39a419e4b457 status: 200 OK code: 200 - duration: 94.716458ms + duration: 68.212792ms - id: 61 request: proto: HTTP/1.1 @@ -3020,7 +3020,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -3028,20 +3028,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:59.337480Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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: - - Tue, 24 Jun 2025 13:14:00 GMT + - Tue, 24 Jun 2025 14:42:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3049,10 +3049,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30227335-d578-4a98-af85-048aea8f9427 + - 7c4588ee-9b06-4b8c-9a8d-7f14aee08087 status: 200 OK code: 200 - duration: 66.725ms + duration: 82.904833ms - id: 62 request: proto: HTTP/1.1 @@ -3069,7 +3069,7 @@ interactions: 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/8f01ab20-ce56-4e12-a173-4a1a85cfebf7 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c method: GET response: proto: HTTP/2.0 @@ -3077,20 +3077,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2894 + content_length: 2878 uncompressed: false - body: '{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"}' + 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: - - "2894" + - "2878" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:00 GMT + - Tue, 24 Jun 2025 14:42:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3098,10 +3098,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c2e2622-428d-4dc1-8565-a55326c0f2d1 + - b3df8281-4dfd-4b58-8bcc-477315bdb83c status: 200 OK code: 200 - duration: 88.832875ms + duration: 107.72825ms - id: 63 request: proto: HTTP/1.1 @@ -3118,7 +3118,7 @@ interactions: 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/f9a060ce-e58b-41f8-99d8-19fafa96329e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/0812569a-083f-4b48-8f51-cf060520bf18 method: GET response: proto: HTTP/2.0 @@ -3126,20 +3126,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3318 + content_length: 3302 uncompressed: false - body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T13:13:53.749787Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:13:58.888409Z"}' + 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: - - "3318" + - "3302" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:00 GMT + - Tue, 24 Jun 2025 14:42:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3147,10 +3147,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df92464d-3e9d-4071-86f1-ef3b8d91e9a3 + - 3748b34f-c64d-4417-b27c-1a5119b9ef63 status: 200 OK code: 200 - duration: 108.472375ms + duration: 117.968875ms - id: 64 request: proto: HTTP/1.1 @@ -3167,7 +3167,7 @@ interactions: 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/61375f77-5d7c-4809-92e2-1f37c5ccbed1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/706766e4-feb1-4724-ad81-658465d5a683 method: GET response: proto: HTTP/2.0 @@ -3175,20 +3175,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 324 + content_length: 320 uncompressed: false - body: '{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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: - - "324" + - "320" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:00 GMT + - Tue, 24 Jun 2025 14:42:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3196,10 +3196,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ad2f8bd-ae5a-4163-8bac-66330335562b + - 98444b47-bc56-4160-826e-a85db17de4d0 status: 200 OK code: 200 - duration: 43.237375ms + duration: 42.169416ms - id: 65 request: proto: HTTP/1.1 @@ -3216,7 +3216,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -3224,20 +3224,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:59.337480Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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: - - Tue, 24 Jun 2025 13:14:00 GMT + - Tue, 24 Jun 2025 14:42:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3245,10 +3245,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e67c9ce9-e8c6-4c31-830d-aa9db4660387 + - c6c17dcb-a1ba-42fe-a4af-df432996a8ec status: 200 OK code: 200 - duration: 65.260875ms + duration: 63.542292ms - id: 66 request: proto: HTTP/1.1 @@ -3265,7 +3265,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -3273,20 +3273,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:59.337480Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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: - - Tue, 24 Jun 2025 13:14:00 GMT + - Tue, 24 Jun 2025 14:42:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3294,10 +3294,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95840d90-425e-43ba-86e1-41d3717e17a2 + - a7f87c14-e56c-41d2-82ef-6f3f81d23318 status: 200 OK code: 200 - duration: 72.790875ms + duration: 82.091708ms - id: 67 request: proto: HTTP/1.1 @@ -3314,7 +3314,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d/private-networks?order_by=created_at_asc + 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 @@ -3333,9 +3333,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:00 GMT + - Tue, 24 Jun 2025 14:42:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3343,10 +3343,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ddaf9c8e-5d68-480d-a41c-781aeb7a59b2 + - 2f8624df-4006-405d-94b9-f9ef23f15048 status: 200 OK code: 200 - duration: 57.144667ms + duration: 48.225292ms - id: 68 request: proto: HTTP/1.1 @@ -3363,7 +3363,7 @@ interactions: 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/c6537c0e-edf2-4179-ba8e-86ffd42cc8bb + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/cf38f32b-9b7d-4daa-a07d-5b1778508c91 method: GET response: proto: HTTP/2.0 @@ -3371,20 +3371,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1907 + content_length: 1895 uncompressed: false - body: '{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:59.337480Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"}' + 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: - - "1907" + - "1895" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:00 GMT + - Tue, 24 Jun 2025 14:42:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3392,10 +3392,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9dbe7577-a4cd-4308-a75c-ac3005e9d137 + - 150ae452-8e38-46bf-a460-657171da56f4 status: 200 OK code: 200 - duration: 95.268834ms + duration: 82.232375ms - id: 69 request: proto: HTTP/1.1 @@ -3412,7 +3412,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -3420,20 +3420,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:13:59.337480Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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: - - Tue, 24 Jun 2025 13:14:00 GMT + - Tue, 24 Jun 2025 14:42:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3441,10 +3441,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f87059e-4ed7-4c35-804a-acf06a213a1a + - cc026432-1c1c-42b9-9f44-037d618180d6 status: 200 OK code: 200 - duration: 71.788834ms + duration: 74.783333ms - id: 70 request: proto: HTTP/1.1 @@ -3461,7 +3461,7 @@ interactions: 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/8f01ab20-ce56-4e12-a173-4a1a85cfebf7 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c method: GET response: proto: HTTP/2.0 @@ -3469,20 +3469,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2894 + content_length: 2878 uncompressed: false - body: '{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"}' + 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: - - "2894" + - "2878" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:01 GMT + - Tue, 24 Jun 2025 14:42:25 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - 0fd212d0-0fba-4785-a862-745c889613e1 + - 560495cc-9654-4b22-83ee-70f53cd5bf58 status: 200 OK code: 200 - duration: 94.20425ms + duration: 91.478625ms - id: 71 request: proto: HTTP/1.1 @@ -3510,7 +3510,7 @@ interactions: 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/f9a060ce-e58b-41f8-99d8-19fafa96329e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/0812569a-083f-4b48-8f51-cf060520bf18 method: GET response: proto: HTTP/2.0 @@ -3518,20 +3518,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3318 + content_length: 3302 uncompressed: false - body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T13:13:53.749787Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:13:58.888409Z"}' + 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: - - "3318" + - "3302" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:01 GMT + - Tue, 24 Jun 2025 14:42:26 GMT Server: - - Scaleway API Gateway (fr-par-3;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: - - f10eb0cb-d558-4289-9ff2-a738857f39e8 + - c2ad89b0-e0ad-47e8-be9e-27637851cd5f status: 200 OK code: 200 - duration: 103.849917ms + duration: 98.860291ms - id: 72 request: proto: HTTP/1.1 @@ -3561,7 +3561,7 @@ interactions: - 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/f9a060ce-e58b-41f8-99d8-19fafa96329e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/0812569a-083f-4b48-8f51-cf060520bf18 method: PUT response: proto: HTTP/2.0 @@ -3569,20 +3569,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3527 + content_length: 3511 uncompressed: false - body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T13:13:53.749787Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-24T13:14:01.538344477Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:14:01.518633040Z"}' + 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: - - "3527" + - "3511" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:01 GMT + - Tue, 24 Jun 2025 14:42:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3590,10 +3590,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4e6a5fc-29c5-4602-b0d6-248de88f32ae + - feee3f90-0653-43c9-8e37-9fc4a0009902 status: 200 OK code: 200 - duration: 293.02825ms + duration: 435.745041ms - id: 73 request: proto: HTTP/1.1 @@ -3610,7 +3610,7 @@ interactions: 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/f9a060ce-e58b-41f8-99d8-19fafa96329e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/0812569a-083f-4b48-8f51-cf060520bf18 method: GET response: proto: HTTP/2.0 @@ -3618,20 +3618,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3319 + content_length: 3303 uncompressed: false - body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T13:13:53.749787Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:14:01.518633Z"}' + 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: - - "3319" + - "3303" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:01 GMT + - Tue, 24 Jun 2025 14:42:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3639,10 +3639,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81b55455-217d-44cb-98e0-71e7dd600c0d + - a45a0ff2-1088-429a-954c-c8311f9d8730 status: 200 OK code: 200 - duration: 85.933209ms + duration: 81.5385ms - id: 74 request: proto: HTTP/1.1 @@ -3659,7 +3659,7 @@ interactions: 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/f9a060ce-e58b-41f8-99d8-19fafa96329e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/0812569a-083f-4b48-8f51-cf060520bf18 method: GET response: proto: HTTP/2.0 @@ -3667,20 +3667,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3319 + content_length: 3303 uncompressed: false - body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T13:13:53.749787Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:14:01.518633Z"}' + 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: - - "3319" + - "3303" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:01 GMT + - Tue, 24 Jun 2025 14:42:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3688,10 +3688,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 396fbea3-2e1b-4376-b1ce-1a98e72c6ad0 + - 4f669b07-14de-4518-92b7-890417fb83e6 status: 200 OK code: 200 - duration: 204.600917ms + duration: 171.861292ms - id: 75 request: proto: HTTP/1.1 @@ -3708,7 +3708,7 @@ interactions: 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/61375f77-5d7c-4809-92e2-1f37c5ccbed1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/706766e4-feb1-4724-ad81-658465d5a683 method: GET response: proto: HTTP/2.0 @@ -3716,20 +3716,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 324 + content_length: 320 uncompressed: false - body: '{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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: - - "324" + - "320" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:02 GMT + - Tue, 24 Jun 2025 14:42:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3737,10 +3737,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ecef2390-08c3-4922-a8c0-560bc9cf7b53 + - 06c1e4f1-b524-4a28-8146-2a119d2c1728 status: 200 OK code: 200 - duration: 44.081958ms + duration: 40.368083ms - id: 76 request: proto: HTTP/1.1 @@ -3757,7 +3757,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -3765,20 +3765,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:14:01.926188Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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: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: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:02 GMT + - Tue, 24 Jun 2025 14:42:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3786,10 +3786,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6754fc2-d872-4084-9c98-f11dfeabb8ae + - 55a0fb3d-534e-4ec5-b86d-121cd46308f5 status: 200 OK code: 200 - duration: 83.287125ms + duration: 77.227709ms - id: 77 request: proto: HTTP/1.1 @@ -3806,7 +3806,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -3814,20 +3814,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:14:01.926188Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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: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: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:02 GMT + - Tue, 24 Jun 2025 14:42:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3835,10 +3835,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c1aa3f9-c345-4a10-8821-23dba8ea1b9d + - ce26d5da-dcee-46f9-8e0c-af72eabc7036 status: 200 OK code: 200 - duration: 62.275125ms + duration: 64.827041ms - id: 78 request: proto: HTTP/1.1 @@ -3855,7 +3855,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d/private-networks?order_by=created_at_asc + 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 @@ -3874,9 +3874,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:02 GMT + - Tue, 24 Jun 2025 14:42:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3884,10 +3884,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96989ee5-e4cd-40b3-a4bd-6b98bd2b24f7 + - 41d1e0a9-3ed1-4219-8d02-bfe86ee3554b status: 200 OK code: 200 - duration: 94.399833ms + duration: 55.390625ms - id: 79 request: proto: HTTP/1.1 @@ -3904,7 +3904,7 @@ interactions: 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/c6537c0e-edf2-4179-ba8e-86ffd42cc8bb + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/cf38f32b-9b7d-4daa-a07d-5b1778508c91 method: GET response: proto: HTTP/2.0 @@ -3912,20 +3912,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1907 + content_length: 1895 uncompressed: false - body: '{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:14:01.926188Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"}' + 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: - - "1907" + - "1895" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:02 GMT + - Tue, 24 Jun 2025 14:42:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3933,10 +3933,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf6e103b-c75b-4273-bfed-6dd4abdb3941 + - 2ae98df3-af6a-4e1a-98c0-e6724c6c0705 status: 200 OK code: 200 - duration: 101.62ms + duration: 87.453167ms - id: 80 request: proto: HTTP/1.1 @@ -3953,7 +3953,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -3961,20 +3961,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:14:01.926188Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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: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: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:02 GMT + - Tue, 24 Jun 2025 14:42:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3982,10 +3982,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37a3950a-85bb-43ec-b21d-3ee5116bd23d + - 4d31700c-a47c-4082-a4d7-d2230f44d43f status: 200 OK code: 200 - duration: 69.963875ms + duration: 73.472709ms - id: 81 request: proto: HTTP/1.1 @@ -4002,7 +4002,7 @@ interactions: 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/8f01ab20-ce56-4e12-a173-4a1a85cfebf7 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c method: GET response: proto: HTTP/2.0 @@ -4010,20 +4010,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2894 + content_length: 2878 uncompressed: false - body: '{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"}' + 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: - - "2894" + - "2878" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:02 GMT + - Tue, 24 Jun 2025 14:42:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4031,10 +4031,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf3aa326-033b-42e3-9145-f5a6833ab513 + - 2eaa1e12-88c9-45bb-ba6b-702eeb812458 status: 200 OK code: 200 - duration: 107.412708ms + duration: 100.797459ms - id: 82 request: proto: HTTP/1.1 @@ -4051,7 +4051,7 @@ interactions: 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/f9a060ce-e58b-41f8-99d8-19fafa96329e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/0812569a-083f-4b48-8f51-cf060520bf18 method: GET response: proto: HTTP/2.0 @@ -4059,20 +4059,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3319 + content_length: 3303 uncompressed: false - body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T13:13:53.749787Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:14:01.518633Z"}' + 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: - - "3319" + - "3303" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:02 GMT + - Tue, 24 Jun 2025 14:42:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4080,10 +4080,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d3412b4-c56b-43bd-b2a8-9fe6247503a9 + - 24a9f373-13f3-458f-a1e7-9b20ebc5190d status: 200 OK code: 200 - duration: 103.441875ms + duration: 106.173833ms - id: 83 request: proto: HTTP/1.1 @@ -4100,7 +4100,7 @@ interactions: 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/61375f77-5d7c-4809-92e2-1f37c5ccbed1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/706766e4-feb1-4724-ad81-658465d5a683 method: GET response: proto: HTTP/2.0 @@ -4108,20 +4108,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 324 + content_length: 320 uncompressed: false - body: '{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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: - - "324" + - "320" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:03 GMT + - Tue, 24 Jun 2025 14:42:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4129,10 +4129,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57ed1b24-ff1e-4c0f-a4e8-293d788a38b5 + - cf1c6c9f-9e8a-4fd0-950e-37869d504025 status: 200 OK code: 200 - duration: 55.173583ms + duration: 42.1325ms - id: 84 request: proto: HTTP/1.1 @@ -4149,7 +4149,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -4157,20 +4157,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:14:01.926188Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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: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: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:03 GMT + - Tue, 24 Jun 2025 14:42:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4178,10 +4178,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5fcfc590-1d69-47ad-8d28-8f832e2b3ba4 + - 13d6cd0b-94c5-4323-9342-f5bf42a6fd85 status: 200 OK code: 200 - duration: 68.148917ms + duration: 76.123958ms - id: 85 request: proto: HTTP/1.1 @@ -4198,7 +4198,7 @@ interactions: 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/c6537c0e-edf2-4179-ba8e-86ffd42cc8bb + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/cf38f32b-9b7d-4daa-a07d-5b1778508c91 method: GET response: proto: HTTP/2.0 @@ -4206,20 +4206,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1907 + content_length: 1895 uncompressed: false - body: '{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:14:01.926188Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"}' + 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: - - "1907" + - "1895" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:03 GMT + - Tue, 24 Jun 2025 14:42:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4227,10 +4227,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b9f7c8d-dc9e-43b5-bff0-3e0033e67fc7 + - 5b1c2537-4109-434d-ac99-58c43ac91975 status: 200 OK code: 200 - duration: 79.01375ms + duration: 91.852458ms - id: 86 request: proto: HTTP/1.1 @@ -4247,7 +4247,7 @@ interactions: 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/f9a060ce-e58b-41f8-99d8-19fafa96329e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c method: GET response: proto: HTTP/2.0 @@ -4255,20 +4255,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3319 + content_length: 2878 uncompressed: false - body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2025-06-24T13:13:53.749787Z","description":"updated description","frontend":{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"},"id":"f9a060ce-e58b-41f8-99d8-19fafa96329e","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-24T13:14:01.518633Z"}' + 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: - - "3319" + - "2878" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:03 GMT + - Tue, 24 Jun 2025 14:42:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4276,10 +4276,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b7d87f6-dbf7-42a4-8653-b531c0fd707f + - c3c6b19d-61c9-404c-af5a-0ee25ccd139e status: 200 OK code: 200 - duration: 97.960375ms + duration: 100.418917ms - id: 87 request: proto: HTTP/1.1 @@ -4296,7 +4296,7 @@ interactions: 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/8f01ab20-ce56-4e12-a173-4a1a85cfebf7 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -4304,20 +4304,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2894 + content_length: 1060 uncompressed: false - body: '{"backend":{"created_at":"2025-06-24T13:13:52.512355Z","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":"c6537c0e-edf2-4179-ba8e-86ffd42cc8bb","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-reverent-montalcini","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-24T13:13:52.512355Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-06-24T13:13:53.220383Z","enable_access_logs":false,"enable_http3":false,"id":"8f01ab20-ce56-4e12-a173-4a1a85cfebf7","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-06-24T13:13:53.220383Z"}' + 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: - - "2894" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:03 GMT + - Tue, 24 Jun 2025 14:42:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4325,10 +4325,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57418cb3-6b5f-450f-a23b-12e1d5aba961 + - a53cdeee-9157-4f52-a56c-8efa539879fe status: 200 OK code: 200 - duration: 103.357791ms + duration: 83.961167ms - id: 88 request: proto: HTTP/1.1 @@ -4345,7 +4345,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/0812569a-083f-4b48-8f51-cf060520bf18 method: GET response: proto: HTTP/2.0 @@ -4353,20 +4353,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 38 + content_length: 3303 uncompressed: false - body: '{"private_network":[],"total_count":0}' + 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: - - "38" + - "3303" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:03 GMT + - Tue, 24 Jun 2025 14:42:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4374,10 +4374,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c8f125c-1223-4f8b-bb48-2b649a535465 + - 72826ccb-5570-4c99-8cf2-114be3247270 status: 200 OK code: 200 - duration: 47.226417ms + duration: 126.09875ms - id: 89 request: proto: HTTP/1.1 @@ -4394,7 +4394,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + 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 @@ -4402,20 +4402,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 38 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:14:01.926188Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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: - - Tue, 24 Jun 2025 13:14:03 GMT + - Tue, 24 Jun 2025 14:42:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4423,10 +4423,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2799236-14b2-4174-aba8-a726c3ea0880 + - c7a0d72b-3f19-440f-8c64-c09163771302 status: 200 OK code: 200 - duration: 73.559ms + duration: 61.407084ms - id: 90 request: proto: HTTP/1.1 @@ -4443,7 +4443,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -4451,20 +4451,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":1,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:14:01.926188Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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: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: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:03 GMT + - Tue, 24 Jun 2025 14:42:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4472,10 +4472,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22ddff5a-4743-4a93-bdba-bad89db899cf + - a0ad0233-89ae-4825-8a79-3206c4953587 status: 200 OK code: 200 - duration: 70.61275ms + duration: 67.148708ms - id: 91 request: proto: HTTP/1.1 @@ -4492,7 +4492,7 @@ interactions: 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/f9a060ce-e58b-41f8-99d8-19fafa96329e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/0812569a-083f-4b48-8f51-cf060520bf18 method: DELETE response: proto: HTTP/2.0 @@ -4509,9 +4509,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:03 GMT + - Tue, 24 Jun 2025 14:42:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4519,10 +4519,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3c343a2-c572-4ff4-b168-a0a95bbf949a + - 86e773fb-7cff-4980-9014-c24fef905701 status: 204 No Content code: 204 - duration: 380.185833ms + duration: 383.624667ms - id: 92 request: proto: HTTP/1.1 @@ -4539,7 +4539,7 @@ interactions: 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/8f01ab20-ce56-4e12-a173-4a1a85cfebf7 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/5a245aaa-b1e0-407c-8b69-ca04e8a7ba3c method: DELETE response: proto: HTTP/2.0 @@ -4556,9 +4556,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:04 GMT + - Tue, 24 Jun 2025 14:42:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4566,10 +4566,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7db66514-191b-4176-9a4a-619882340e0c + - bf2d347b-aeae-46e9-b5e1-71ac4bca6078 status: 204 No Content code: 204 - duration: 352.214292ms + duration: 361.978417ms - id: 93 request: proto: HTTP/1.1 @@ -4586,7 +4586,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -4594,20 +4594,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1062 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":0,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:14:04.065270Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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: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: - - "1064" + - "1062" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:04 GMT + - Tue, 24 Jun 2025 14:42:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4615,10 +4615,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6afcbcc3-bf8c-4628-8f38-f670e5cefa4d + - eade0d26-2f92-44bc-9e8a-cfc04c4cbafd status: 200 OK code: 200 - duration: 67.277291ms + duration: 72.112792ms - id: 94 request: proto: HTTP/1.1 @@ -4635,7 +4635,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -4643,20 +4643,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1060 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":0,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:14:04.065270Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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: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: - - "1064" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:04 GMT + - Tue, 24 Jun 2025 14:42:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4664,10 +4664,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7db0b6e-8c34-4ea4-bc5e-226dc56f134e + - 8800c685-5611-420f-8c10-14de52ca7533 status: 200 OK code: 200 - duration: 68.527666ms + duration: 83.834625ms - id: 95 request: proto: HTTP/1.1 @@ -4684,7 +4684,7 @@ interactions: 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/c6537c0e-edf2-4179-ba8e-86ffd42cc8bb + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/cf38f32b-9b7d-4daa-a07d-5b1778508c91 method: DELETE response: proto: HTTP/2.0 @@ -4701,9 +4701,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:04 GMT + - Tue, 24 Jun 2025 14:42:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4711,10 +4711,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37ebbecc-adf9-4785-b241-4ac544d67d39 + - b7e60fb3-e69d-4767-b4aa-a45784fc176e status: 204 No Content code: 204 - duration: 284.698041ms + duration: 329.423542ms - id: 96 request: proto: HTTP/1.1 @@ -4731,7 +4731,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -4739,20 +4739,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1066 + content_length: 1062 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":0,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-24T13:14:04.569230Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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":"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: - - "1066" + - "1062" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:04 GMT + - Tue, 24 Jun 2025 14:42:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4760,10 +4760,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6fa275c7-2d6f-4751-9ca6-1ae7e4c9b90c + - 0c46fa5f-a868-4d9d-ae26-97ba0275202b status: 200 OK code: 200 - duration: 66.515917ms + duration: 65.347042ms - id: 97 request: proto: HTTP/1.1 @@ -4780,7 +4780,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -4788,20 +4788,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1066 + content_length: 1060 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":0,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-24T13:14:04.569230Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:13:25.189601Z","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: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: - - "1066" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:04 GMT + - Tue, 24 Jun 2025 14:42:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4809,10 +4809,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c0613c9-7243-42d1-9497-b7b2394b31c2 + - f6d966c0-c002-4719-8db7-5efbfe9bcba5 status: 200 OK code: 200 - duration: 105.809208ms + duration: 80.878333ms - id: 98 request: proto: HTTP/1.1 @@ -4829,7 +4829,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d?release_ip=false + 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 @@ -4846,9 +4846,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:05 GMT + - Tue, 24 Jun 2025 14:42:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4856,10 +4856,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7efbb661-d745-4f3f-818d-62f507e1ff12 + - 89236811-074c-4d63-b7a7-5f54a7e93841 status: 204 No Content code: 204 - duration: 270.510792ms + duration: 339.375875ms - id: 99 request: proto: HTTP/1.1 @@ -4876,7 +4876,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -4884,20 +4884,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1068 + content_length: 1064 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-06-24T13:13:21.732224Z","description":"","frontend_count":0,"id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","instances":[{"created_at":"2025-06-24T13:12:33.074888Z","id":"e407a146-99c3-403d-bccb-41499cd2cc2a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-24T13:14:04.885440Z","zone":"fr-par-1"}],"ip":[{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":"bc188ea8-b63d-4448-af93-176c9aa8e16d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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-24T13:14:04.980951Z","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: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: - - "1068" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:05 GMT + - Tue, 24 Jun 2025 14:42:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4905,10 +4905,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50380085-567c-4034-add3-10f889524645 + - 10a8f398-f33a-43e2-9166-157c8f23c8e3 status: 200 OK code: 200 - duration: 70.834167ms + duration: 70.370042ms - id: 100 request: proto: HTTP/1.1 @@ -4925,7 +4925,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -4944,9 +4944,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:35 GMT + - Tue, 24 Jun 2025 14:43:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4954,10 +4954,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2fa1e3ab-74aa-4bc2-9b5b-df7a63d4432c + - 9706c158-eb25-461e-af63-7ea370a1a876 status: 404 Not Found code: 404 - duration: 30.545708ms + duration: 50.892208ms - id: 101 request: proto: HTTP/1.1 @@ -4974,7 +4974,7 @@ interactions: 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/bc188ea8-b63d-4448-af93-176c9aa8e16d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5d4774d9-0df5-4adb-8d9a-f99608135c11 method: GET response: proto: HTTP/2.0 @@ -4993,9 +4993,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:35 GMT + - Tue, 24 Jun 2025 14:43:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5003,10 +5003,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc237b09-27f6-489e-80e7-e8303d9b942c + - 6ec94bf6-dc3c-4758-b2cb-7e88e7c47131 status: 404 Not Found code: 404 - duration: 47.656875ms + duration: 21.2245ms - id: 102 request: proto: HTTP/1.1 @@ -5023,7 +5023,7 @@ interactions: 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/61375f77-5d7c-4809-92e2-1f37c5ccbed1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/706766e4-feb1-4724-ad81-658465d5a683 method: GET response: proto: HTTP/2.0 @@ -5031,20 +5031,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 290 + content_length: 286 uncompressed: false - body: '{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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: - - Tue, 24 Jun 2025 13:14:35 GMT + - Tue, 24 Jun 2025 14:43:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5052,10 +5052,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e96fcd2-367a-42be-904e-973a46b2ff92 + - 3f26f88b-dcc9-4c1c-a5e3-897ac4a6168a status: 200 OK code: 200 - duration: 49.014875ms + duration: 41.641459ms - id: 103 request: proto: HTTP/1.1 @@ -5072,7 +5072,7 @@ interactions: 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/61375f77-5d7c-4809-92e2-1f37c5ccbed1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/706766e4-feb1-4724-ad81-658465d5a683 method: GET response: proto: HTTP/2.0 @@ -5080,20 +5080,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 290 + content_length: 286 uncompressed: false - body: '{"id":"61375f77-5d7c-4809-92e2-1f37c5ccbed1","ip_address":"51.158.100.107","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-100-107.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: - - Tue, 24 Jun 2025 13:14:35 GMT + - Tue, 24 Jun 2025 14:43:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5101,10 +5101,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca22f639-a843-4329-aacf-c89f737d8f38 + - 83d7cd7a-51a8-4834-ac2d-94d54e6f5390 status: 200 OK code: 200 - duration: 51.241459ms + duration: 48.645125ms - id: 104 request: proto: HTTP/1.1 @@ -5121,7 +5121,7 @@ interactions: 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/61375f77-5d7c-4809-92e2-1f37c5ccbed1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/706766e4-feb1-4724-ad81-658465d5a683 method: DELETE response: proto: HTTP/2.0 @@ -5138,9 +5138,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 24 Jun 2025 13:14:36 GMT + - Tue, 24 Jun 2025 14:43:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5148,7 +5148,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3eb9f5f9-787e-47f6-bb14-a2064c19a79d + - 32a70830-2357-4ac1-982c-d88d0f2963ee status: 204 No Content code: 204 - duration: 331.483292ms + 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 443d204c2e..ea96ad90a9 100644 --- a/internal/services/lb/types.go +++ b/internal/services/lb/types.go @@ -69,33 +69,62 @@ func flattenLbACLMatch(match *lb.ACLMatch) any { } } -func isIPSubnetConfigured(d *schema.ResourceData) bool { +func isIPSubnetConfigured(d *schema.ResourceData, aclIndex int) bool { rawConfig := d.GetRawConfig() if rawConfig.IsNull() { return false } - matchConfig := rawConfig.GetAttr("match") - if matchConfig.IsNull() || matchConfig.LengthInt() == 0 { - 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 + 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 !matchBlock.GetAttr("ip_subnet").IsNull() + return false } -func expandLbACLMatch(d *schema.ResourceData, raw any) *lb.ACLMatch { +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) + ipSubnetConfigured := isIPSubnetConfigured(d, aclIndex) var ipSubnet []*string @@ -288,12 +317,12 @@ func flattenLbACL(acl *lb.ACL) any { } // expandLbACL transforms a state acl to an api one. -func expandLbACL(d *schema.ResourceData, 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(d, rawRule["match"]), + Match: expandLbACLMatch(d, rawRule["match"], aclIndex), Action: expandLbACLAction(rawRule["action"]), CreatedAt: types.ExpandTimePtr(rawRule["created_at"]), UpdatedAt: types.ExpandTimePtr(rawRule["updated_at"]), From 5c5f0e94a9fbae07d6f8fb835dd4c41545a8376a Mon Sep 17 00:00:00 2001 From: Yacine FODIL Date: Tue, 24 Jun 2025 16:53:58 +0200 Subject: [PATCH 5/5] fix --- internal/services/lb/acls_data_source.go | 4 ++++ internal/services/lb/types.go | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) 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/types.go b/internal/services/lb/types.go index ea96ad90a9..c22e0095fd 100644 --- a/internal/services/lb/types.go +++ b/internal/services/lb/types.go @@ -88,7 +88,6 @@ func isIPSubnetConfigured(d *schema.ResourceData, aclIndex int) bool { } return !matchBlock.GetAttr("ip_subnet").IsNull() - } else if rawConfig.Type().HasAttribute("acl") { // Frontend resource - check specific ACL by index aclConfig := rawConfig.GetAttr("acl")