diff --git a/docs/data-sources/lb_frontends.md b/docs/data-sources/lb_frontends.md index 85413e0b43..27798e553e 100644 --- a/docs/data-sources/lb_frontends.md +++ b/docs/data-sources/lb_frontends.md @@ -40,9 +40,11 @@ In addition to all arguments above, the following attributes are exported: ~> **Important:** LB frontend IDs are [zoned](../guides/regions_and_zones.md#resource-ids), which means they are of the form `{zone}/{id}`, e.g. `fr-par-1/11111111-1111-1111-1111-111111111111` - `inbound_port` - TCP port the frontend listens to. - `created_at` - The date on which the frontend was created (RFC 3339 format). - - `update_at` - The date aont which the frontend was last updated (RFC 3339 format). + - `update_at` - The date on which the frontend was last updated (RFC 3339 format). - `backend_id` - The Load Balancer backend ID this frontend is attached to. ~> **Important:** Load Balancer backend IDs are [zoned](../guides/regions_and_zones.md#resource-ids), which means they are of the form `{zone}/{id}`, e.g. `fr-par-1/11111111-1111-1111-1111-111111111111` - `timeout_client` - Maximum inactivity time on the client side. - `certificate_ids` - List of certificate IDs that are used by the frontend. - `enable_http3` - Whether HTTP/3 protocol is activated. + - `connection_rate_limit` - The rate limit for new connections established on this frontend. Use 0 value to disable, else value is connections per second. + - `enable_access_logs` - Defines whether to enable access logs on the frontend. diff --git a/docs/resources/lb_frontend.md b/docs/resources/lb_frontend.md index d34ec4838e..f7ccbd712d 100644 --- a/docs/resources/lb_frontend.md +++ b/docs/resources/lb_frontend.md @@ -173,6 +173,8 @@ The following arguments are supported: - `connection_rate_limit` - (Optional) The rate limit for new connections established on this frontend. Use 0 value to disable, else value is connections per second. +- `enable_access_logs` - (Default: `false`) Defines whether to enable access logs on the frontend. + - `acl` - (Optional) A list of ACL rules to apply to the Load Balancer frontend. Defined below. ## acl @@ -221,6 +223,9 @@ In addition to all arguments above, the following attributes are exported: - `certificate_id` - (Deprecated, use `certificate_ids` instead) First certificate ID used by the frontend. +- `created_at` - The date and time the frontend was created. + +- `updated_at` - The date and time the frontend resource was updated. ## Import diff --git a/internal/services/lb/data_source_lb_frontends.go b/internal/services/lb/data_source_lb_frontends.go index f3b84367cc..564845ef1b 100644 --- a/internal/services/lb/data_source_lb_frontends.go +++ b/internal/services/lb/data_source_lb_frontends.go @@ -32,28 +32,34 @@ func DataSourceFrontends() *schema.Resource { Elem: &schema.Resource{ Schema: map[string]*schema.Schema{ "id": { - Computed: true, - Type: schema.TypeString, + Computed: true, + Type: schema.TypeString, + Description: "The load-balancer frontend ID", }, "name": { - Computed: true, - Type: schema.TypeString, + Computed: true, + Type: schema.TypeString, + Description: "The name of the frontend", }, "inbound_port": { - Computed: true, - Type: schema.TypeInt, + Computed: true, + Type: schema.TypeInt, + Description: "TCP port to listen on the front side", }, "backend_id": { - Computed: true, - Type: schema.TypeString, + Computed: true, + Type: schema.TypeString, + Description: "The load-balancer backend ID", }, "lb_id": { - Computed: true, - Type: schema.TypeString, + Computed: true, + Type: schema.TypeString, + Description: "The load-balancer ID", }, "timeout_client": { - Computed: true, - Type: schema.TypeString, + Computed: true, + Type: schema.TypeString, + Description: "Set the maximum inactivity time on the client side", }, "certificate_ids": { Computed: true, @@ -61,18 +67,32 @@ func DataSourceFrontends() *schema.Resource { Elem: &schema.Schema{ Type: schema.TypeString, }, + Description: "Collection of Certificate IDs related to the load balancer and domain", }, "created_at": { - Computed: true, - Type: schema.TypeString, + Computed: true, + Type: schema.TypeString, + Description: "The date and time of the creation of the frontend", }, "update_at": { - Computed: true, - Type: schema.TypeString, + Computed: true, + Type: schema.TypeString, + Description: "The date and time of the last update of the frontend", }, "enable_http3": { - Computed: true, - Type: schema.TypeBool, + Computed: true, + Type: schema.TypeBool, + Description: "Activates HTTP/3 protocol", + }, + "connection_rate_limit": { + Computed: true, + Type: schema.TypeInt, + Description: "Rate limit for new connections established on this frontend. Use 0 value to disable, else value is connections per second", + }, + "enable_access_logs": { + Computed: true, + Type: schema.TypeBool, + Description: "Defines whether to enable access logs on the frontend", }, }, }, @@ -117,6 +137,8 @@ func DataSourceLbFrontendsRead(ctx context.Context, d *schema.ResourceData, m an rawFrontend["backend_id"] = frontend.Backend.ID rawFrontend["timeout_client"] = types.FlattenDuration(frontend.TimeoutClient) rawFrontend["enable_http3"] = frontend.EnableHTTP3 + rawFrontend["connection_rate_limit"] = types.FlattenUint32Ptr(frontend.ConnectionRateLimit) + rawFrontend["enable_access_logs"] = frontend.EnableAccessLogs if len(frontend.CertificateIDs) > 0 { rawFrontend["certificate_ids"] = frontend.CertificateIDs diff --git a/internal/services/lb/frontend.go b/internal/services/lb/frontend.go index 3e931b797b..1a86e853e5 100644 --- a/internal/services/lb/frontend.go +++ b/internal/services/lb/frontend.go @@ -228,6 +228,22 @@ func ResourceFrontend() *schema.Resource { Optional: true, Description: "Rate limit for new connections established on this frontend. Use 0 value to disable, else value is connections per second", }, + "enable_access_logs": { + Type: schema.TypeBool, + Description: "Defines whether to enable access logs on the frontend", + Optional: true, + Default: false, + }, + "created_at": { + Type: schema.TypeString, + Computed: true, + Description: "The date and time of the creation of the frontend", + }, + "updated_at": { + Type: schema.TypeString, + Computed: true, + Description: "The date and time of the last update of the frontend", + }, }, } } @@ -283,6 +299,7 @@ func resourceLbFrontendCreate(ctx context.Context, d *schema.ResourceData, m any TimeoutClient: timeoutClient, EnableHTTP3: d.Get("enable_http3").(bool), ConnectionRateLimit: types.ExpandUint32Ptr(d.Get("connection_rate_limit")), + EnableAccessLogs: d.Get("enable_access_logs").(bool), } certificatesRaw, certificatesExist := d.GetOk("certificate_ids") @@ -331,6 +348,9 @@ func resourceLbFrontendRead(ctx context.Context, d *schema.ResourceData, m any) _ = d.Set("timeout_client", types.FlattenDuration(frontend.TimeoutClient)) _ = d.Set("enable_http3", frontend.EnableHTTP3) _ = d.Set("connection_rate_limit", types.FlattenUint32Ptr(frontend.ConnectionRateLimit)) + _ = d.Set("enable_access_logs", frontend.EnableAccessLogs) + _ = d.Set("created_at", types.FlattenTime(frontend.CreatedAt)) + _ = d.Set("updated_at", types.FlattenTime(frontend.UpdatedAt)) if frontend.Certificate != nil { //nolint:staticcheck _ = d.Set("certificate_id", zonal.NewIDString(zone, frontend.Certificate.ID)) //nolint:staticcheck @@ -495,6 +515,7 @@ func resourceLbFrontendUpdate(ctx context.Context, d *schema.ResourceData, m any CertificateIDs: types.ExpandSliceIDsPtr(d.Get("certificate_ids")), EnableHTTP3: d.Get("enable_http3").(bool), ConnectionRateLimit: types.ExpandUint32Ptr(d.Get("connection_rate_limit")), + EnableAccessLogs: types.ExpandBoolPtr(d.Get("enable_access_logs")), } _, err = lbAPI.UpdateFrontend(req, scw.WithContext(ctx)) diff --git a/internal/services/lb/frontend_test.go b/internal/services/lb/frontend_test.go index 6420a8fcea..d97534b5c2 100644 --- a/internal/services/lb/frontend_test.go +++ b/internal/services/lb/frontend_test.go @@ -51,6 +51,7 @@ func TestAccFrontend_Basic(t *testing.T) { resource.TestCheckResourceAttr("scaleway_lb_frontend.frt01", "timeout_client", ""), resource.TestCheckResourceAttr("scaleway_lb_frontend.frt01", "enable_http3", "false"), resource.TestCheckResourceAttr("scaleway_lb_frontend.frt01", "connection_rate_limit", "0"), + resource.TestCheckResourceAttr("scaleway_lb_frontend.frt01", "enable_access_logs", "false"), ), }, { @@ -75,6 +76,7 @@ func TestAccFrontend_Basic(t *testing.T) { timeout_client = "30s" enable_http3 = true connection_rate_limit = 100 + enable_access_logs = true } `, Check: resource.ComposeTestCheckFunc( @@ -84,6 +86,7 @@ func TestAccFrontend_Basic(t *testing.T) { resource.TestCheckResourceAttr("scaleway_lb_frontend.frt01", "timeout_client", "30s"), resource.TestCheckResourceAttr("scaleway_lb_frontend.frt01", "enable_http3", "true"), resource.TestCheckResourceAttr("scaleway_lb_frontend.frt01", "connection_rate_limit", "100"), + resource.TestCheckResourceAttr("scaleway_lb_frontend.frt01", "enable_access_logs", "true"), ), }, }, diff --git a/internal/services/lb/testdata/frontend-basic.cassette.yaml b/internal/services/lb/testdata/frontend-basic.cassette.yaml index d13d6b80f1..607451f0a5 100644 --- a/internal/services/lb/testdata/frontend-basic.cassette.yaml +++ b/internal/services/lb/testdata/frontend-basic.cassette.yaml @@ -18,7 +18,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; 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: 296 uncompressed: false - body: '{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "288" + - "296" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:01:27 GMT + - Thu, 17 Jul 2025 08:56:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09d0ed3d-2211-4a22-b609-92fa9f37a3b4 + - d1227483-0db8-42c8-a28b-940d85647806 status: 200 OK code: 200 - duration: 180.981773ms + duration: 200.997916ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cc53ed9d-dbcd-4194-bf5f-434480603009 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/d8f9b59f-c9f7-4632-a8e4-bb54d578e18d method: GET response: proto: HTTP/2.0 @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 288 + content_length: 296 uncompressed: false - body: '{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "288" + - "296" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:01:27 GMT + - Thu, 17 Jul 2025 08:56:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf721b44-34b4-4ca2-b2ae-47bdeb21eac2 + - 603629a4-5e14-4fc8-80aa-058bc8fbc926 status: 200 OK code: 200 - duration: 47.238143ms + duration: 63.211709ms - id: 2 request: proto: HTTP/1.1 @@ -112,13 +112,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-lb","description":"","ip_id":"cc53ed9d-dbcd-4194-bf5f-434480603009","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","description":"","ip_id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; 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: 868 + content_length: 895 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-03-18T15:01:27.731874756Z","description":"","frontend_count":0,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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-03-18T15:01:27.731874756Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-07-17T08:56:12.919751189Z","description":"","frontend_count":0,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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-07-17T08:56:12.919751189Z","zone":"fr-par-1"}' headers: Content-Length: - - "868" + - "895" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:01:27 GMT + - Thu, 17 Jul 2025 08:56:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 43b9a2b5-7cc7-48a2-8850-d2f617729037 + - c122b1c1-c6fd-4492-8dba-ec420c122384 status: 200 OK code: 200 - duration: 327.953845ms + duration: 418.900333ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/423e88d2-9298-4bff-a6a6-9374ae8315a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d4c9fe16-e524-4f66-aebc-470a46172fb6 method: GET response: proto: HTTP/2.0 @@ -176,20 +176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 862 + content_length: 1096 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":0,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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-03-18T15:01:27.731875Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":0,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[{"created_at":"2025-07-17T08:53:00.438990Z","id":"b78aac3a-ca5d-4c15-81d8-5aa676120706","ip_address":"","region":"fr-par","status":"unknown","updated_at":"2025-07-17T08:56:13.232971Z","zone":"fr-par-1"}],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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-07-17T08:56:13.240135Z","zone":"fr-par-1"}' headers: Content-Length: - - "862" + - "1096" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:01:28 GMT + - Thu, 17 Jul 2025 08:56:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4212e80b-c2b6-40c6-897d-de403427fcf2 + - fb640b02-ec44-4e4a-b90c-46db352a97bd status: 200 OK code: 200 - duration: 71.499621ms + duration: 67.552625ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/423e88d2-9298-4bff-a6a6-9374ae8315a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d4c9fe16-e524-4f66-aebc-470a46172fb6 method: GET response: proto: HTTP/2.0 @@ -225,20 +225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1058 + content_length: 1091 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":0,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[{"created_at":"2025-03-18T14:59:45.126593Z","id":"d6a4d3fc-68cc-4539-a439-34b86555536b","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-03-18T15:01:29.923758Z","zone":"fr-par-1"}],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":0,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[{"created_at":"2025-07-17T08:53:00.438990Z","id":"b78aac3a-ca5d-4c15-81d8-5aa676120706","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-07-17T08:56:14.991124Z","zone":"fr-par-1"}],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1058" + - "1091" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:01:58 GMT + - Thu, 17 Jul 2025 08:56:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -246,10 +246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1531eb40-39e5-4da6-a90e-3af6c910d65a + - d43c7d3c-2a00-4888-8982-619984f7826a status: 200 OK code: 200 - duration: 76.723135ms + duration: 89.508792ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/423e88d2-9298-4bff-a6a6-9374ae8315a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d4c9fe16-e524-4f66-aebc-470a46172fb6 method: GET response: proto: HTTP/2.0 @@ -274,20 +274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1058 + content_length: 1091 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":0,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[{"created_at":"2025-03-18T14:59:45.126593Z","id":"d6a4d3fc-68cc-4539-a439-34b86555536b","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-03-18T15:01:29.923758Z","zone":"fr-par-1"}],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":0,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[{"created_at":"2025-07-17T08:53:00.438990Z","id":"b78aac3a-ca5d-4c15-81d8-5aa676120706","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-07-17T08:56:14.991124Z","zone":"fr-par-1"}],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1058" + - "1091" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:01:58 GMT + - Thu, 17 Jul 2025 08:56:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -295,10 +295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47496cc9-619d-4b0c-87af-630854756d0d + - 229f03c2-8ed8-4218-8ca5-74b80405a6f9 status: 200 OK code: 200 - duration: 80.12791ms + duration: 76.459084ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/423e88d2-9298-4bff-a6a6-9374ae8315a3/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d4c9fe16-e524-4f66-aebc-470a46172fb6/private-networks?order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -323,20 +323,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 38 + content_length: 39 uncompressed: false body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "38" + - "39" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:01:58 GMT + - Thu, 17 Jul 2025 08:56:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -344,10 +344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b3db7028-20a4-40fc-9f09-95a81a7448fe + - 027d9853-a83c-4457-8f63-0dc232dbe907 status: 200 OK code: 200 - duration: 45.844517ms + duration: 80.209833ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/423e88d2-9298-4bff-a6a6-9374ae8315a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d4c9fe16-e524-4f66-aebc-470a46172fb6 method: GET response: proto: HTTP/2.0 @@ -372,20 +372,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1058 + content_length: 1091 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":0,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[{"created_at":"2025-03-18T14:59:45.126593Z","id":"d6a4d3fc-68cc-4539-a439-34b86555536b","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-03-18T15:01:29.923758Z","zone":"fr-par-1"}],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":0,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[{"created_at":"2025-07-17T08:53:00.438990Z","id":"b78aac3a-ca5d-4c15-81d8-5aa676120706","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-07-17T08:56:14.991124Z","zone":"fr-par-1"}],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1058" + - "1091" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:01:58 GMT + - Thu, 17 Jul 2025 08:56:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -393,29 +393,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - abc856c2-747e-44f8-b17f-fb942d023efd + - fdd025b1-71ef-47aa-ba56-edccc92fa4b5 status: 200 OK code: 200 - duration: 73.243819ms + duration: 62.462875ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 606 + content_length: 609 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-lb-bkd-happy-lamarr","forward_protocol":"tcp","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-mystifying-kare","forward_protocol":"tcp","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.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/423e88d2-9298-4bff-a6a6-9374ae8315a3/backends + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d4c9fe16-e524-4f66-aebc-470a46172fb6/backends method: POST response: proto: HTTP/2.0 @@ -423,20 +423,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1904 + content_length: 1970 uncompressed: false - body: '{"created_at":"2025-03-18T15:01:58.460374989Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"tcp","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"4c8d60db-83aa-489a-8d5a-2b0c5026f1be","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":0,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[{"created_at":"2025-03-18T14:59:45.126593Z","id":"d6a4d3fc-68cc-4539-a439-34b86555536b","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-03-18T15:01:58.488413123Z","zone":"fr-par-1"}],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-happy-lamarr","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-03-18T15:01:58.460374989Z"}' + body: '{"created_at":"2025-07-17T08:56:43.728659389Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"tcp","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"e59e7145-3a1d-4eaf-be9e-bcb6f3cfaa46","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":0,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[{"created_at":"2025-07-17T08:53:00.438990Z","id":"b78aac3a-ca5d-4c15-81d8-5aa676120706","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-07-17T08:56:43.755846853Z","zone":"fr-par-1"}],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-mystifying-kare","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-07-17T08:56:43.728659389Z"}' headers: Content-Length: - - "1904" + - "1970" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:01:58 GMT + - Thu, 17 Jul 2025 08:56:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,10 +444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07d215f9-c7b5-4615-8ed6-f2db1c81b315 + - 1355bfed-fd90-4eba-b2f0-ea6add6b9fcb status: 200 OK code: 200 - duration: 455.411101ms + duration: 332.007959ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/423e88d2-9298-4bff-a6a6-9374ae8315a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d4c9fe16-e524-4f66-aebc-470a46172fb6 method: GET response: proto: HTTP/2.0 @@ -472,20 +472,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1060 + content_length: 1093 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":0,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[{"created_at":"2025-03-18T14:59:45.126593Z","id":"d6a4d3fc-68cc-4539-a439-34b86555536b","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-03-18T15:01:58.488413Z","zone":"fr-par-1"}],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":0,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[{"created_at":"2025-07-17T08:53:00.438990Z","id":"b78aac3a-ca5d-4c15-81d8-5aa676120706","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-07-17T08:56:43.755847Z","zone":"fr-par-1"}],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1060" + - "1093" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:01:58 GMT + - Thu, 17 Jul 2025 08:56:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -493,10 +493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e2be0ee-84a1-4f43-9897-b97be00ecd57 + - 5bc2ebd6-27db-4e53-a02e-4621d4ea2cff status: 200 OK code: 200 - duration: 84.084483ms + duration: 117.7865ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/4c8d60db-83aa-489a-8d5a-2b0c5026f1be + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/e59e7145-3a1d-4eaf-be9e-bcb6f3cfaa46 method: GET response: proto: HTTP/2.0 @@ -521,20 +521,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1893 + content_length: 1961 uncompressed: false - body: '{"created_at":"2025-03-18T15:01:58.460375Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"tcp","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"4c8d60db-83aa-489a-8d5a-2b0c5026f1be","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":0,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[{"created_at":"2025-03-18T14:59:45.126593Z","id":"d6a4d3fc-68cc-4539-a439-34b86555536b","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-03-18T15:01:58.871872Z","zone":"fr-par-1"}],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-happy-lamarr","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-03-18T15:01:58.460375Z"}' + body: '{"created_at":"2025-07-17T08:56:43.728659Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"tcp","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"e59e7145-3a1d-4eaf-be9e-bcb6f3cfaa46","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":0,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[{"created_at":"2025-07-17T08:53:00.438990Z","id":"b78aac3a-ca5d-4c15-81d8-5aa676120706","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-07-17T08:56:43.755847Z","zone":"fr-par-1"}],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-mystifying-kare","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-07-17T08:56:43.728659Z"}' headers: Content-Length: - - "1893" + - "1961" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:01:58 GMT + - Thu, 17 Jul 2025 08:56:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -542,10 +542,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ce3effc-f6bb-414c-aeeb-7aee18bc6986 + - d02d25dd-2526-470e-995b-2b0f1cbd4d01 status: 200 OK code: 200 - duration: 97.58957ms + duration: 79.551542ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/423e88d2-9298-4bff-a6a6-9374ae8315a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d4c9fe16-e524-4f66-aebc-470a46172fb6 method: GET response: proto: HTTP/2.0 @@ -570,20 +570,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1058 + content_length: 1093 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":0,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[{"created_at":"2025-03-18T14:59:45.126593Z","id":"d6a4d3fc-68cc-4539-a439-34b86555536b","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-03-18T15:01:58.871872Z","zone":"fr-par-1"}],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":0,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[{"created_at":"2025-07-17T08:53:00.438990Z","id":"b78aac3a-ca5d-4c15-81d8-5aa676120706","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-07-17T08:56:43.755847Z","zone":"fr-par-1"}],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1058" + - "1093" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:01:59 GMT + - Thu, 17 Jul 2025 08:56:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -591,10 +591,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6325f90f-f39b-4c8b-ae72-be81efa8b064 + - 006dc1d8-0b04-4c8e-9f8c-3bfaac7d734f status: 200 OK code: 200 - duration: 72.640072ms + duration: 81.235208ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/423e88d2-9298-4bff-a6a6-9374ae8315a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d4c9fe16-e524-4f66-aebc-470a46172fb6 method: GET response: proto: HTTP/2.0 @@ -619,20 +619,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1058 + content_length: 1091 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":0,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[{"created_at":"2025-03-18T14:59:45.126593Z","id":"d6a4d3fc-68cc-4539-a439-34b86555536b","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-03-18T15:01:58.871872Z","zone":"fr-par-1"}],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":0,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[{"created_at":"2025-07-17T08:53:00.438990Z","id":"b78aac3a-ca5d-4c15-81d8-5aa676120706","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-07-17T08:56:44.203871Z","zone":"fr-par-1"}],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1058" + - "1091" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:01:59 GMT + - Thu, 17 Jul 2025 08:56:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -640,29 +640,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35b5cb63-5bf7-4261-9447-79b177563378 + - adc14954-0d57-4c4d-aeb4-267ca8b9bd0e status: 200 OK code: 200 - duration: 94.168246ms + duration: 57.9265ms - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 158 + content_length: 180 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-lb-frt-unruffled-lichterman","inbound_port":80,"backend_id":"4c8d60db-83aa-489a-8d5a-2b0c5026f1be","enable_http3":false,"connection_rate_limit":0}' + body: '{"name":"tf-lb-frt-gracious-bouman","inbound_port":80,"backend_id":"e59e7145-3a1d-4eaf-be9e-bcb6f3cfaa46","enable_http3":false,"connection_rate_limit":0,"enable_access_logs":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/423e88d2-9298-4bff-a6a6-9374ae8315a3/frontends + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d4c9fe16-e524-4f66-aebc-470a46172fb6/frontends method: POST response: proto: HTTP/2.0 @@ -670,20 +670,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3074 + content_length: 3201 uncompressed: false - body: '{"backend":{"created_at":"2025-03-18T15:01:58.460375Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"tcp","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"4c8d60db-83aa-489a-8d5a-2b0c5026f1be","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":1,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-happy-lamarr","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-03-18T15:01:58.460375Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-03-18T15:01:59.341934Z","enable_http3":false,"id":"f0d6a42f-2b22-4c5e-bc96-9c07c66365b0","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":1,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[{"created_at":"2025-03-18T14:59:45.126593Z","id":"d6a4d3fc-68cc-4539-a439-34b86555536b","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-03-18T15:01:59.396070453Z","zone":"fr-par-1"}],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"},"name":"tf-lb-frt-unruffled-lichterman","timeout_client":null,"updated_at":"2025-03-18T15:01:59.341934Z"}' + body: '{"backend":{"created_at":"2025-07-17T08:56:43.728659Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"tcp","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"e59e7145-3a1d-4eaf-be9e-bcb6f3cfaa46","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":1,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-mystifying-kare","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-07-17T08:56:43.728659Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-07-17T08:56:44.493207Z","enable_access_logs":false,"enable_http3":false,"id":"818bad95-8a9a-4e3d-b68c-215211b9b97a","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":1,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[{"created_at":"2025-07-17T08:53:00.438990Z","id":"b78aac3a-ca5d-4c15-81d8-5aa676120706","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-07-17T08:56:44.547684762Z","zone":"fr-par-1"}],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"},"name":"tf-lb-frt-gracious-bouman","timeout_client":null,"updated_at":"2025-07-17T08:56:44.493207Z"}' headers: Content-Length: - - "3074" + - "3201" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:01:59 GMT + - Thu, 17 Jul 2025 08:56:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -691,10 +691,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65fdcbd7-a221-4f1a-97d0-2dd863e95a5a + - a5bf7ffe-6151-44d6-9644-06ea61b5fb64 status: 200 OK code: 200 - duration: 480.954209ms + duration: 443.857792ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/423e88d2-9298-4bff-a6a6-9374ae8315a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d4c9fe16-e524-4f66-aebc-470a46172fb6 method: GET response: proto: HTTP/2.0 @@ -719,20 +719,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1060 + content_length: 1093 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":1,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[{"created_at":"2025-03-18T14:59:45.126593Z","id":"d6a4d3fc-68cc-4539-a439-34b86555536b","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-03-18T15:01:59.396070Z","zone":"fr-par-1"}],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":1,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[{"created_at":"2025-07-17T08:53:00.438990Z","id":"b78aac3a-ca5d-4c15-81d8-5aa676120706","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-07-17T08:56:44.547685Z","zone":"fr-par-1"}],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1060" + - "1093" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:01:59 GMT + - Thu, 17 Jul 2025 08:56:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -740,29 +740,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32633746-2f5f-4580-ad30-1389e274f228 + - 37ba71f1-6959-4232-b579-18b287f08be8 status: 200 OK code: 200 - duration: 73.346031ms + duration: 59.841958ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 179 + content_length: 202 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-lb-frt-mystifying-zhukovsky","inbound_port":80,"backend_id":"4c8d60db-83aa-489a-8d5a-2b0c5026f1be","certificate_ids":[],"enable_http3":false,"connection_rate_limit":0}' + body: '{"name":"tf-lb-frt-agitated-hypatia","inbound_port":80,"backend_id":"e59e7145-3a1d-4eaf-be9e-bcb6f3cfaa46","certificate_ids":[],"enable_http3":false,"connection_rate_limit":0,"enable_access_logs":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/f0d6a42f-2b22-4c5e-bc96-9c07c66365b0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/818bad95-8a9a-4e3d-b68c-215211b9b97a method: PUT response: proto: HTTP/2.0 @@ -770,20 +770,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3077 + content_length: 3205 uncompressed: false - body: '{"backend":{"created_at":"2025-03-18T15:01:58.460375Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"tcp","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"4c8d60db-83aa-489a-8d5a-2b0c5026f1be","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":1,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-happy-lamarr","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-03-18T15:01:58.460375Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-03-18T15:01:59.341934Z","enable_http3":false,"id":"f0d6a42f-2b22-4c5e-bc96-9c07c66365b0","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":1,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[{"created_at":"2025-03-18T14:59:45.126593Z","id":"d6a4d3fc-68cc-4539-a439-34b86555536b","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-03-18T15:01:59.934245660Z","zone":"fr-par-1"}],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"},"name":"tf-lb-frt-mystifying-zhukovsky","timeout_client":null,"updated_at":"2025-03-18T15:01:59.902753289Z"}' + body: '{"backend":{"created_at":"2025-07-17T08:56:43.728659Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"tcp","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"e59e7145-3a1d-4eaf-be9e-bcb6f3cfaa46","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":1,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-mystifying-kare","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-07-17T08:56:43.728659Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-07-17T08:56:44.493207Z","enable_access_logs":false,"enable_http3":false,"id":"818bad95-8a9a-4e3d-b68c-215211b9b97a","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":1,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[{"created_at":"2025-07-17T08:53:00.438990Z","id":"b78aac3a-ca5d-4c15-81d8-5aa676120706","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-07-17T08:56:45.022361534Z","zone":"fr-par-1"}],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"},"name":"tf-lb-frt-agitated-hypatia","timeout_client":null,"updated_at":"2025-07-17T08:56:45.000654843Z"}' headers: Content-Length: - - "3077" + - "3205" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:00 GMT + - Thu, 17 Jul 2025 08:56:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -791,10 +791,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8abf21e9-3957-4b5b-860e-dab1a329d277 + - 78a1b028-ab5f-4dc2-b4fa-7437aaa3467b status: 200 OK code: 200 - duration: 416.080039ms + duration: 421.818542ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/f0d6a42f-2b22-4c5e-bc96-9c07c66365b0/acls?order_by=created_at_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/818bad95-8a9a-4e3d-b68c-215211b9b97a/acls?order_by=created_at_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -819,20 +819,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 27 + content_length: 28 uncompressed: false body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "27" + - "28" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:00 GMT + - Thu, 17 Jul 2025 08:56:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -840,10 +840,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c550258-e46a-4924-a53f-dbff4367d54b + - 08524d8f-eb3d-4988-a929-4f25357e5cc3 status: 200 OK code: 200 - duration: 86.255939ms + duration: 97.471209ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/f0d6a42f-2b22-4c5e-bc96-9c07c66365b0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/818bad95-8a9a-4e3d-b68c-215211b9b97a method: GET response: proto: HTTP/2.0 @@ -868,20 +868,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2869 + content_length: 2991 uncompressed: false - body: '{"backend":{"created_at":"2025-03-18T15:01:58.460375Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"tcp","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"4c8d60db-83aa-489a-8d5a-2b0c5026f1be","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":1,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-happy-lamarr","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-03-18T15:01:58.460375Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-03-18T15:01:59.341934Z","enable_http3":false,"id":"f0d6a42f-2b22-4c5e-bc96-9c07c66365b0","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":1,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"},"name":"tf-lb-frt-mystifying-zhukovsky","timeout_client":null,"updated_at":"2025-03-18T15:01:59.902753Z"}' + body: '{"backend":{"created_at":"2025-07-17T08:56:43.728659Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"tcp","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"e59e7145-3a1d-4eaf-be9e-bcb6f3cfaa46","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":1,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-mystifying-kare","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-07-17T08:56:43.728659Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-07-17T08:56:44.493207Z","enable_access_logs":false,"enable_http3":false,"id":"818bad95-8a9a-4e3d-b68c-215211b9b97a","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":1,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"},"name":"tf-lb-frt-agitated-hypatia","timeout_client":null,"updated_at":"2025-07-17T08:56:45.000655Z"}' headers: Content-Length: - - "2869" + - "2991" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:00 GMT + - Thu, 17 Jul 2025 08:56:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -889,10 +889,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44c92746-aa3a-470b-bb78-248b0267edac + - bf85d21a-50e8-4b39-a774-f94a0bf8144c status: 200 OK code: 200 - duration: 100.278406ms + duration: 89.080583ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/f0d6a42f-2b22-4c5e-bc96-9c07c66365b0/acls?order_by=created_at_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/818bad95-8a9a-4e3d-b68c-215211b9b97a/acls?order_by=created_at_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -917,20 +917,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 27 + content_length: 28 uncompressed: false body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "27" + - "28" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:00 GMT + - Thu, 17 Jul 2025 08:56:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -938,10 +938,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d6c30cd-58a6-49ab-8bb0-00a44547c08a + - 35ed051c-0ae5-4f5e-9bee-ab0af6757528 status: 200 OK code: 200 - duration: 102.850085ms + duration: 106.916125ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/f0d6a42f-2b22-4c5e-bc96-9c07c66365b0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/818bad95-8a9a-4e3d-b68c-215211b9b97a method: GET response: proto: HTTP/2.0 @@ -966,20 +966,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2869 + content_length: 2991 uncompressed: false - body: '{"backend":{"created_at":"2025-03-18T15:01:58.460375Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"tcp","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"4c8d60db-83aa-489a-8d5a-2b0c5026f1be","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":1,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-happy-lamarr","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-03-18T15:01:58.460375Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-03-18T15:01:59.341934Z","enable_http3":false,"id":"f0d6a42f-2b22-4c5e-bc96-9c07c66365b0","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":1,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"},"name":"tf-lb-frt-mystifying-zhukovsky","timeout_client":null,"updated_at":"2025-03-18T15:01:59.902753Z"}' + body: '{"backend":{"created_at":"2025-07-17T08:56:43.728659Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"tcp","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"e59e7145-3a1d-4eaf-be9e-bcb6f3cfaa46","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":1,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-mystifying-kare","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-07-17T08:56:43.728659Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-07-17T08:56:44.493207Z","enable_access_logs":false,"enable_http3":false,"id":"818bad95-8a9a-4e3d-b68c-215211b9b97a","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":1,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"},"name":"tf-lb-frt-agitated-hypatia","timeout_client":null,"updated_at":"2025-07-17T08:56:45.000655Z"}' headers: Content-Length: - - "2869" + - "2991" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:00 GMT + - Thu, 17 Jul 2025 08:56:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -987,10 +987,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17eee07a-8447-4bc4-b4d3-0ff8a9affc0c + - bfc00999-a74e-4781-80a3-14ffe058c0e2 status: 200 OK code: 200 - duration: 83.775778ms + duration: 80.121542ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cc53ed9d-dbcd-4194-bf5f-434480603009 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/d8f9b59f-c9f7-4632-a8e4-bb54d578e18d method: GET response: proto: HTTP/2.0 @@ -1015,20 +1015,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 322 + content_length: 330 uncompressed: false - body: '{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "322" + - "330" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:01 GMT + - Thu, 17 Jul 2025 08:56:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1036,10 +1036,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 94a0950e-ec44-422c-b390-d28258402ea2 + - 568ae791-f172-422c-b2f7-30350c64eb18 status: 200 OK code: 200 - duration: 39.100611ms + duration: 50.946292ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/423e88d2-9298-4bff-a6a6-9374ae8315a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d4c9fe16-e524-4f66-aebc-470a46172fb6 method: GET response: proto: HTTP/2.0 @@ -1064,20 +1064,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1058 + content_length: 1091 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":1,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[{"created_at":"2025-03-18T14:59:45.126593Z","id":"d6a4d3fc-68cc-4539-a439-34b86555536b","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-03-18T15:02:00.242728Z","zone":"fr-par-1"}],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":1,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[{"created_at":"2025-07-17T08:53:00.438990Z","id":"b78aac3a-ca5d-4c15-81d8-5aa676120706","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-07-17T08:56:45.586540Z","zone":"fr-par-1"}],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1058" + - "1091" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:01 GMT + - Thu, 17 Jul 2025 08:56:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1085,10 +1085,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84a5e120-cd36-41cc-934b-6e72b499e5b1 + - 4b34cb54-7f4c-4885-bbf2-266a806aa8f0 status: 200 OK code: 200 - duration: 79.94324ms + duration: 64.365542ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/423e88d2-9298-4bff-a6a6-9374ae8315a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d4c9fe16-e524-4f66-aebc-470a46172fb6 method: GET response: proto: HTTP/2.0 @@ -1113,20 +1113,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1058 + content_length: 1091 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":1,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[{"created_at":"2025-03-18T14:59:45.126593Z","id":"d6a4d3fc-68cc-4539-a439-34b86555536b","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-03-18T15:02:00.242728Z","zone":"fr-par-1"}],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":1,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[{"created_at":"2025-07-17T08:53:00.438990Z","id":"b78aac3a-ca5d-4c15-81d8-5aa676120706","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-07-17T08:56:45.586540Z","zone":"fr-par-1"}],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1058" + - "1091" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:01 GMT + - Thu, 17 Jul 2025 08:56:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1134,10 +1134,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff42bc8d-e268-4ac6-a1e4-e654201e7100 + - 72a5bb0b-0a80-46f6-ac80-fc68ae615c46 status: 200 OK code: 200 - duration: 59.167369ms + duration: 64.650333ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/423e88d2-9298-4bff-a6a6-9374ae8315a3/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d4c9fe16-e524-4f66-aebc-470a46172fb6/private-networks?order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -1162,20 +1162,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 38 + content_length: 39 uncompressed: false body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "38" + - "39" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:01 GMT + - Thu, 17 Jul 2025 08:56:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1183,10 +1183,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e729b76-780f-416d-8be2-63d82a58d8d7 + - 3e3ed81e-08e6-4b0f-a12b-66f97306de2d status: 200 OK code: 200 - duration: 59.279676ms + duration: 49.927333ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/4c8d60db-83aa-489a-8d5a-2b0c5026f1be + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/e59e7145-3a1d-4eaf-be9e-bcb6f3cfaa46 method: GET response: proto: HTTP/2.0 @@ -1211,20 +1211,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1893 + content_length: 1959 uncompressed: false - body: '{"created_at":"2025-03-18T15:01:58.460375Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"tcp","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"4c8d60db-83aa-489a-8d5a-2b0c5026f1be","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":1,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[{"created_at":"2025-03-18T14:59:45.126593Z","id":"d6a4d3fc-68cc-4539-a439-34b86555536b","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-03-18T15:02:00.242728Z","zone":"fr-par-1"}],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-happy-lamarr","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-03-18T15:01:58.460375Z"}' + body: '{"created_at":"2025-07-17T08:56:43.728659Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"tcp","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"e59e7145-3a1d-4eaf-be9e-bcb6f3cfaa46","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":1,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[{"created_at":"2025-07-17T08:53:00.438990Z","id":"b78aac3a-ca5d-4c15-81d8-5aa676120706","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-07-17T08:56:45.586540Z","zone":"fr-par-1"}],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-mystifying-kare","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-07-17T08:56:43.728659Z"}' headers: Content-Length: - - "1893" + - "1959" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:01 GMT + - Thu, 17 Jul 2025 08:56:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1232,10 +1232,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83f54b29-0aa3-4caf-99e3-491bbe4d0d43 + - ba0a4b47-c858-46d3-9605-5a1cfa022b48 status: 200 OK code: 200 - duration: 86.375611ms + duration: 76.775958ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/423e88d2-9298-4bff-a6a6-9374ae8315a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d4c9fe16-e524-4f66-aebc-470a46172fb6 method: GET response: proto: HTTP/2.0 @@ -1260,20 +1260,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1058 + content_length: 1091 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":1,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[{"created_at":"2025-03-18T14:59:45.126593Z","id":"d6a4d3fc-68cc-4539-a439-34b86555536b","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-03-18T15:02:00.242728Z","zone":"fr-par-1"}],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":1,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[{"created_at":"2025-07-17T08:53:00.438990Z","id":"b78aac3a-ca5d-4c15-81d8-5aa676120706","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-07-17T08:56:45.586540Z","zone":"fr-par-1"}],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1058" + - "1091" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:01 GMT + - Thu, 17 Jul 2025 08:56:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1281,10 +1281,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 10f613c9-cc88-47f3-8174-c5626c8d71aa + - 5353603c-eaac-4b9e-936d-4e462e7c452d status: 200 OK code: 200 - duration: 62.31145ms + duration: 63.807916ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/f0d6a42f-2b22-4c5e-bc96-9c07c66365b0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/818bad95-8a9a-4e3d-b68c-215211b9b97a method: GET response: proto: HTTP/2.0 @@ -1309,20 +1309,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2869 + content_length: 2991 uncompressed: false - body: '{"backend":{"created_at":"2025-03-18T15:01:58.460375Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"tcp","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"4c8d60db-83aa-489a-8d5a-2b0c5026f1be","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":1,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-happy-lamarr","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-03-18T15:01:58.460375Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-03-18T15:01:59.341934Z","enable_http3":false,"id":"f0d6a42f-2b22-4c5e-bc96-9c07c66365b0","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":1,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"},"name":"tf-lb-frt-mystifying-zhukovsky","timeout_client":null,"updated_at":"2025-03-18T15:01:59.902753Z"}' + body: '{"backend":{"created_at":"2025-07-17T08:56:43.728659Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"tcp","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"e59e7145-3a1d-4eaf-be9e-bcb6f3cfaa46","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":1,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-mystifying-kare","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-07-17T08:56:43.728659Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-07-17T08:56:44.493207Z","enable_access_logs":false,"enable_http3":false,"id":"818bad95-8a9a-4e3d-b68c-215211b9b97a","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":1,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"},"name":"tf-lb-frt-agitated-hypatia","timeout_client":null,"updated_at":"2025-07-17T08:56:45.000655Z"}' headers: Content-Length: - - "2869" + - "2991" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:01 GMT + - Thu, 17 Jul 2025 08:56:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1330,10 +1330,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a21be19e-b762-465b-ab27-495d848d5472 + - feda1e5d-0a81-4755-95c4-9f001b880ffe status: 200 OK code: 200 - duration: 93.846171ms + duration: 82.8705ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/f0d6a42f-2b22-4c5e-bc96-9c07c66365b0/acls?order_by=created_at_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/818bad95-8a9a-4e3d-b68c-215211b9b97a/acls?order_by=created_at_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -1358,20 +1358,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 27 + content_length: 28 uncompressed: false body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "27" + - "28" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:01 GMT + - Thu, 17 Jul 2025 08:56:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1379,10 +1379,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f385ecb-737a-41a5-9765-c80812c1c08d + - 3725d0d6-14f0-4e48-bc5b-0a9179849a05 status: 200 OK code: 200 - duration: 104.035161ms + duration: 87.450416ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cc53ed9d-dbcd-4194-bf5f-434480603009 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/d8f9b59f-c9f7-4632-a8e4-bb54d578e18d method: GET response: proto: HTTP/2.0 @@ -1407,20 +1407,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 322 + content_length: 330 uncompressed: false - body: '{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "322" + - "330" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:02 GMT + - Thu, 17 Jul 2025 08:56:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1428,10 +1428,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 39f1a3fa-06c8-4c6d-b6eb-2eb4b3386d44 + - 2db66902-c831-46fd-9ebe-659d68ad20bc status: 200 OK code: 200 - duration: 51.558136ms + duration: 81.766666ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/423e88d2-9298-4bff-a6a6-9374ae8315a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d4c9fe16-e524-4f66-aebc-470a46172fb6 method: GET response: proto: HTTP/2.0 @@ -1456,20 +1456,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1058 + content_length: 1091 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":1,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[{"created_at":"2025-03-18T14:59:45.126593Z","id":"d6a4d3fc-68cc-4539-a439-34b86555536b","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-03-18T15:02:00.242728Z","zone":"fr-par-1"}],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":1,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[{"created_at":"2025-07-17T08:53:00.438990Z","id":"b78aac3a-ca5d-4c15-81d8-5aa676120706","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-07-17T08:56:45.586540Z","zone":"fr-par-1"}],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1058" + - "1091" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:02 GMT + - Thu, 17 Jul 2025 08:56:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1477,10 +1477,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57c2705d-75f2-4adc-afe0-8f4999a9ebe9 + - 76657f64-7d6d-4d62-b752-585b16618cb4 status: 200 OK code: 200 - duration: 60.430121ms + duration: 65.876667ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/423e88d2-9298-4bff-a6a6-9374ae8315a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d4c9fe16-e524-4f66-aebc-470a46172fb6 method: GET response: proto: HTTP/2.0 @@ -1505,20 +1505,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1058 + content_length: 1091 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":1,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[{"created_at":"2025-03-18T14:59:45.126593Z","id":"d6a4d3fc-68cc-4539-a439-34b86555536b","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-03-18T15:02:00.242728Z","zone":"fr-par-1"}],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":1,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[{"created_at":"2025-07-17T08:53:00.438990Z","id":"b78aac3a-ca5d-4c15-81d8-5aa676120706","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-07-17T08:56:45.586540Z","zone":"fr-par-1"}],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1058" + - "1091" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:02 GMT + - Thu, 17 Jul 2025 08:56:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1526,10 +1526,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f89fa1d-4493-4184-b7e7-147de53a9051 + - 8d406762-b65a-4d47-9a50-c744022ed793 status: 200 OK code: 200 - duration: 68.565164ms + duration: 63.234792ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/423e88d2-9298-4bff-a6a6-9374ae8315a3/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d4c9fe16-e524-4f66-aebc-470a46172fb6/private-networks?order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -1554,20 +1554,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 38 + content_length: 39 uncompressed: false body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "38" + - "39" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:02 GMT + - Thu, 17 Jul 2025 08:56:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1575,10 +1575,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c1c74cc5-9843-4e6e-8bad-607b3056bdbf + - bddeb708-46c0-4508-842c-4a1916e491d1 status: 200 OK code: 200 - duration: 54.517276ms + duration: 51.990417ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/4c8d60db-83aa-489a-8d5a-2b0c5026f1be + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/e59e7145-3a1d-4eaf-be9e-bcb6f3cfaa46 method: GET response: proto: HTTP/2.0 @@ -1603,20 +1603,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1893 + content_length: 1959 uncompressed: false - body: '{"created_at":"2025-03-18T15:01:58.460375Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"tcp","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"4c8d60db-83aa-489a-8d5a-2b0c5026f1be","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":1,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[{"created_at":"2025-03-18T14:59:45.126593Z","id":"d6a4d3fc-68cc-4539-a439-34b86555536b","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-03-18T15:02:00.242728Z","zone":"fr-par-1"}],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-happy-lamarr","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-03-18T15:01:58.460375Z"}' + body: '{"created_at":"2025-07-17T08:56:43.728659Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"tcp","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"e59e7145-3a1d-4eaf-be9e-bcb6f3cfaa46","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":1,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[{"created_at":"2025-07-17T08:53:00.438990Z","id":"b78aac3a-ca5d-4c15-81d8-5aa676120706","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-07-17T08:56:45.586540Z","zone":"fr-par-1"}],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-mystifying-kare","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-07-17T08:56:43.728659Z"}' headers: Content-Length: - - "1893" + - "1959" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:02 GMT + - Thu, 17 Jul 2025 08:56:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1624,10 +1624,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fcd025da-4120-4139-824c-c631fa2f9552 + - b2200b00-7fa6-49cb-a084-ad455ade94e8 status: 200 OK code: 200 - duration: 88.680855ms + duration: 68.404542ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/423e88d2-9298-4bff-a6a6-9374ae8315a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d4c9fe16-e524-4f66-aebc-470a46172fb6 method: GET response: proto: HTTP/2.0 @@ -1652,20 +1652,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1058 + content_length: 1091 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":1,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[{"created_at":"2025-03-18T14:59:45.126593Z","id":"d6a4d3fc-68cc-4539-a439-34b86555536b","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-03-18T15:02:00.242728Z","zone":"fr-par-1"}],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":1,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[{"created_at":"2025-07-17T08:53:00.438990Z","id":"b78aac3a-ca5d-4c15-81d8-5aa676120706","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-07-17T08:56:45.586540Z","zone":"fr-par-1"}],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1058" + - "1091" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:02 GMT + - Thu, 17 Jul 2025 08:56:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1673,10 +1673,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06d7fc28-db8c-408a-9c5a-9bbb393ce375 + - 48453b32-a68a-4deb-a7f6-dbb24b20ad51 status: 200 OK code: 200 - duration: 67.294611ms + duration: 76.045375ms - id: 34 request: proto: HTTP/1.1 @@ -1692,8 +1692,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/f0d6a42f-2b22-4c5e-bc96-9c07c66365b0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/818bad95-8a9a-4e3d-b68c-215211b9b97a method: GET response: proto: HTTP/2.0 @@ -1701,20 +1701,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2869 + content_length: 2991 uncompressed: false - body: '{"backend":{"created_at":"2025-03-18T15:01:58.460375Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"tcp","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"4c8d60db-83aa-489a-8d5a-2b0c5026f1be","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":1,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-happy-lamarr","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-03-18T15:01:58.460375Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-03-18T15:01:59.341934Z","enable_http3":false,"id":"f0d6a42f-2b22-4c5e-bc96-9c07c66365b0","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":1,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"},"name":"tf-lb-frt-mystifying-zhukovsky","timeout_client":null,"updated_at":"2025-03-18T15:01:59.902753Z"}' + body: '{"backend":{"created_at":"2025-07-17T08:56:43.728659Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"tcp","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"e59e7145-3a1d-4eaf-be9e-bcb6f3cfaa46","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":1,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-mystifying-kare","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-07-17T08:56:43.728659Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":null,"created_at":"2025-07-17T08:56:44.493207Z","enable_access_logs":false,"enable_http3":false,"id":"818bad95-8a9a-4e3d-b68c-215211b9b97a","inbound_port":80,"lb":{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":1,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"},"name":"tf-lb-frt-agitated-hypatia","timeout_client":null,"updated_at":"2025-07-17T08:56:45.000655Z"}' headers: Content-Length: - - "2869" + - "2991" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:02 GMT + - Thu, 17 Jul 2025 08:56:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1722,10 +1722,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9213697-990c-4d70-b1cb-c8aa09d21a80 + - 588379f9-2d2b-4c27-bc00-11b6efcb5d97 status: 200 OK code: 200 - duration: 97.553823ms + duration: 111.185666ms - id: 35 request: proto: HTTP/1.1 @@ -1741,8 +1741,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/f0d6a42f-2b22-4c5e-bc96-9c07c66365b0/acls?order_by=created_at_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/818bad95-8a9a-4e3d-b68c-215211b9b97a/acls?order_by=created_at_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -1750,20 +1750,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 27 + content_length: 28 uncompressed: false body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "27" + - "28" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:02 GMT + - Thu, 17 Jul 2025 08:56:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1771,10 +1771,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b704e5fc-c76a-4ece-a434-c4d2c0f7a024 + - 87508327-90ce-4ee6-b53e-0206646749f4 status: 200 OK code: 200 - duration: 107.996297ms + duration: 95.368042ms - id: 36 request: proto: HTTP/1.1 @@ -1790,8 +1790,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/423e88d2-9298-4bff-a6a6-9374ae8315a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d4c9fe16-e524-4f66-aebc-470a46172fb6 method: GET response: proto: HTTP/2.0 @@ -1799,20 +1799,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1058 + content_length: 1091 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":1,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[{"created_at":"2025-03-18T14:59:45.126593Z","id":"d6a4d3fc-68cc-4539-a439-34b86555536b","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-03-18T15:02:00.242728Z","zone":"fr-par-1"}],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":1,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[{"created_at":"2025-07-17T08:53:00.438990Z","id":"b78aac3a-ca5d-4c15-81d8-5aa676120706","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-07-17T08:56:45.586540Z","zone":"fr-par-1"}],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1058" + - "1091" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:03 GMT + - Thu, 17 Jul 2025 08:56:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1820,29 +1820,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cff3e8b0-09d2-4c67-9856-11230ca9e5fd + - 6bd29eb4-0d52-44ff-a90a-ee0536455ed0 status: 200 OK code: 200 - duration: 86.15344ms + duration: 74.086583ms - id: 37 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 181 + content_length: 207 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-test","inbound_port":443,"backend_id":"4c8d60db-83aa-489a-8d5a-2b0c5026f1be","certificate_ids":[],"enable_http3":true,"connection_rate_limit":100,"timeout_client":30000}' + body: '{"name":"tf-test","inbound_port":443,"backend_id":"e59e7145-3a1d-4eaf-be9e-bcb6f3cfaa46","certificate_ids":[],"enable_http3":true,"connection_rate_limit":100,"enable_access_logs":true,"timeout_client":30000}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/f0d6a42f-2b22-4c5e-bc96-9c07c66365b0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/818bad95-8a9a-4e3d-b68c-215211b9b97a method: PUT response: proto: HTTP/2.0 @@ -1850,20 +1850,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3054 + content_length: 3185 uncompressed: false - body: '{"backend":{"created_at":"2025-03-18T15:01:58.460375Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"tcp","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"4c8d60db-83aa-489a-8d5a-2b0c5026f1be","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":1,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-happy-lamarr","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-03-18T15:01:58.460375Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":100,"created_at":"2025-03-18T15:01:59.341934Z","enable_http3":true,"id":"f0d6a42f-2b22-4c5e-bc96-9c07c66365b0","inbound_port":443,"lb":{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":1,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[{"created_at":"2025-03-18T14:59:45.126593Z","id":"d6a4d3fc-68cc-4539-a439-34b86555536b","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-03-18T15:02:03.764682522Z","zone":"fr-par-1"}],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-03-18T15:02:03.736828464Z"}' + body: '{"backend":{"created_at":"2025-07-17T08:56:43.728659Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"tcp","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"e59e7145-3a1d-4eaf-be9e-bcb6f3cfaa46","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":1,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-mystifying-kare","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-07-17T08:56:43.728659Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":100,"created_at":"2025-07-17T08:56:44.493207Z","enable_access_logs":true,"enable_http3":true,"id":"818bad95-8a9a-4e3d-b68c-215211b9b97a","inbound_port":443,"lb":{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":1,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[{"created_at":"2025-07-17T08:53:00.438990Z","id":"b78aac3a-ca5d-4c15-81d8-5aa676120706","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-07-17T08:56:47.780012253Z","zone":"fr-par-1"}],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-07-17T08:56:47.753748228Z"}' headers: Content-Length: - - "3054" + - "3185" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:03 GMT + - Thu, 17 Jul 2025 08:56:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1871,10 +1871,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb539b4a-3e4a-4e37-9ba5-cc6fe2a494da + - fe24f185-64d5-4505-9a79-87df0cafbcac status: 200 OK code: 200 - duration: 350.65329ms + duration: 527.864375ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/f0d6a42f-2b22-4c5e-bc96-9c07c66365b0/acls?order_by=created_at_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/818bad95-8a9a-4e3d-b68c-215211b9b97a/acls?order_by=created_at_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -1899,20 +1899,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 27 + content_length: 28 uncompressed: false body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "27" + - "28" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:04 GMT + - Thu, 17 Jul 2025 08:56:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1920,10 +1920,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bbdf4bbb-8469-43bc-b560-99e346319cb5 + - 8760dd16-1d57-4c83-83c4-56e56290f60f status: 200 OK code: 200 - duration: 110.942205ms + duration: 94.392625ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/f0d6a42f-2b22-4c5e-bc96-9c07c66365b0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/818bad95-8a9a-4e3d-b68c-215211b9b97a method: GET response: proto: HTTP/2.0 @@ -1948,20 +1948,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2846 + content_length: 2971 uncompressed: false - body: '{"backend":{"created_at":"2025-03-18T15:01:58.460375Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"tcp","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"4c8d60db-83aa-489a-8d5a-2b0c5026f1be","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":1,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-happy-lamarr","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-03-18T15:01:58.460375Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":100,"created_at":"2025-03-18T15:01:59.341934Z","enable_http3":true,"id":"f0d6a42f-2b22-4c5e-bc96-9c07c66365b0","inbound_port":443,"lb":{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":1,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-03-18T15:02:03.736828Z"}' + body: '{"backend":{"created_at":"2025-07-17T08:56:43.728659Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"tcp","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"e59e7145-3a1d-4eaf-be9e-bcb6f3cfaa46","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":1,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-mystifying-kare","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-07-17T08:56:43.728659Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":100,"created_at":"2025-07-17T08:56:44.493207Z","enable_access_logs":true,"enable_http3":true,"id":"818bad95-8a9a-4e3d-b68c-215211b9b97a","inbound_port":443,"lb":{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":1,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-07-17T08:56:47.753748Z"}' headers: Content-Length: - - "2846" + - "2971" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:04 GMT + - Thu, 17 Jul 2025 08:56:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1969,10 +1969,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0765411-edff-4cf6-815e-5714692a74ca + - 1ef1e52e-e77a-44da-85ea-3f4cf8ebaeef status: 200 OK code: 200 - duration: 103.608202ms + duration: 79.643083ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/f0d6a42f-2b22-4c5e-bc96-9c07c66365b0/acls?order_by=created_at_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/818bad95-8a9a-4e3d-b68c-215211b9b97a/acls?order_by=created_at_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -1997,20 +1997,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 27 + content_length: 28 uncompressed: false body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "27" + - "28" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:04 GMT + - Thu, 17 Jul 2025 08:56:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2018,10 +2018,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee5e56f1-0ae1-4d9a-8fd5-56ebc9690172 + - 6a73e10d-05ca-40c7-b6c2-69186feeb8c6 status: 200 OK code: 200 - duration: 91.683667ms + duration: 82.307ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/f0d6a42f-2b22-4c5e-bc96-9c07c66365b0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/818bad95-8a9a-4e3d-b68c-215211b9b97a method: GET response: proto: HTTP/2.0 @@ -2046,20 +2046,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2846 + content_length: 2971 uncompressed: false - body: '{"backend":{"created_at":"2025-03-18T15:01:58.460375Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"tcp","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"4c8d60db-83aa-489a-8d5a-2b0c5026f1be","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":1,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-happy-lamarr","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-03-18T15:01:58.460375Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":100,"created_at":"2025-03-18T15:01:59.341934Z","enable_http3":true,"id":"f0d6a42f-2b22-4c5e-bc96-9c07c66365b0","inbound_port":443,"lb":{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":1,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-03-18T15:02:03.736828Z"}' + body: '{"backend":{"created_at":"2025-07-17T08:56:43.728659Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"tcp","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"e59e7145-3a1d-4eaf-be9e-bcb6f3cfaa46","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":1,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-mystifying-kare","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-07-17T08:56:43.728659Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":100,"created_at":"2025-07-17T08:56:44.493207Z","enable_access_logs":true,"enable_http3":true,"id":"818bad95-8a9a-4e3d-b68c-215211b9b97a","inbound_port":443,"lb":{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":1,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-07-17T08:56:47.753748Z"}' headers: Content-Length: - - "2846" + - "2971" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:04 GMT + - Thu, 17 Jul 2025 08:56:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2067,10 +2067,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a5705c5-fef5-49dd-8d5e-6dbe181433a7 + - b1d6bf7e-3fcc-49f9-b4bb-6653e26e089e status: 200 OK code: 200 - duration: 111.976374ms + duration: 97.002125ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cc53ed9d-dbcd-4194-bf5f-434480603009 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/d8f9b59f-c9f7-4632-a8e4-bb54d578e18d method: GET response: proto: HTTP/2.0 @@ -2095,20 +2095,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 322 + content_length: 330 uncompressed: false - body: '{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "322" + - "330" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:05 GMT + - Thu, 17 Jul 2025 08:56:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2116,10 +2116,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c518965e-353e-4924-b68e-512dac38b8a5 + - 9e2ec58e-50ec-4044-9336-a88c74e6763c status: 200 OK code: 200 - duration: 59.038229ms + duration: 44.556083ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/423e88d2-9298-4bff-a6a6-9374ae8315a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d4c9fe16-e524-4f66-aebc-470a46172fb6 method: GET response: proto: HTTP/2.0 @@ -2144,20 +2144,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1058 + content_length: 1091 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":1,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[{"created_at":"2025-03-18T14:59:45.126593Z","id":"d6a4d3fc-68cc-4539-a439-34b86555536b","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-03-18T15:02:04.124971Z","zone":"fr-par-1"}],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":1,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[{"created_at":"2025-07-17T08:53:00.438990Z","id":"b78aac3a-ca5d-4c15-81d8-5aa676120706","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-07-17T08:56:48.210265Z","zone":"fr-par-1"}],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1058" + - "1091" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:05 GMT + - Thu, 17 Jul 2025 08:56:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2165,10 +2165,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cbee4273-12b6-4573-8406-95ae8b150f8d + - 79b84b84-679b-4056-b511-c43228cd29ee status: 200 OK code: 200 - duration: 75.305743ms + duration: 68.653541ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/423e88d2-9298-4bff-a6a6-9374ae8315a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d4c9fe16-e524-4f66-aebc-470a46172fb6 method: GET response: proto: HTTP/2.0 @@ -2193,20 +2193,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1058 + content_length: 1091 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":1,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[{"created_at":"2025-03-18T14:59:45.126593Z","id":"d6a4d3fc-68cc-4539-a439-34b86555536b","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-03-18T15:02:04.124971Z","zone":"fr-par-1"}],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":1,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[{"created_at":"2025-07-17T08:53:00.438990Z","id":"b78aac3a-ca5d-4c15-81d8-5aa676120706","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-07-17T08:56:48.210265Z","zone":"fr-par-1"}],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1058" + - "1091" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:05 GMT + - Thu, 17 Jul 2025 08:56:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2214,10 +2214,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6caae82-a6c9-4867-94fc-f44d90431639 + - 4dee4224-2e7c-4207-8f9f-4675601c11bf status: 200 OK code: 200 - duration: 73.59194ms + duration: 54.576958ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/423e88d2-9298-4bff-a6a6-9374ae8315a3/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d4c9fe16-e524-4f66-aebc-470a46172fb6/private-networks?order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -2242,20 +2242,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 38 + content_length: 39 uncompressed: false body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "38" + - "39" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:05 GMT + - Thu, 17 Jul 2025 08:56:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2263,10 +2263,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad506e78-638c-4af7-a759-ef590367a1ef + - 2df82137-d564-4bca-b065-9796de35778c status: 200 OK code: 200 - duration: 58.460688ms + duration: 49.247334ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/4c8d60db-83aa-489a-8d5a-2b0c5026f1be + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/e59e7145-3a1d-4eaf-be9e-bcb6f3cfaa46 method: GET response: proto: HTTP/2.0 @@ -2291,20 +2291,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1893 + content_length: 1959 uncompressed: false - body: '{"created_at":"2025-03-18T15:01:58.460375Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"tcp","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"4c8d60db-83aa-489a-8d5a-2b0c5026f1be","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":1,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[{"created_at":"2025-03-18T14:59:45.126593Z","id":"d6a4d3fc-68cc-4539-a439-34b86555536b","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-03-18T15:02:04.124971Z","zone":"fr-par-1"}],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-happy-lamarr","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-03-18T15:01:58.460375Z"}' + body: '{"created_at":"2025-07-17T08:56:43.728659Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"tcp","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"e59e7145-3a1d-4eaf-be9e-bcb6f3cfaa46","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":1,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[{"created_at":"2025-07-17T08:53:00.438990Z","id":"b78aac3a-ca5d-4c15-81d8-5aa676120706","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-07-17T08:56:48.210265Z","zone":"fr-par-1"}],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-mystifying-kare","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-07-17T08:56:43.728659Z"}' headers: Content-Length: - - "1893" + - "1959" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:05 GMT + - Thu, 17 Jul 2025 08:56:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2312,10 +2312,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9fbcd1cf-1cf2-4a18-8e21-c727007b02f8 + - f92dbd54-4871-49eb-b815-326b1c869129 status: 200 OK code: 200 - duration: 78.492898ms + duration: 76.957084ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/423e88d2-9298-4bff-a6a6-9374ae8315a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d4c9fe16-e524-4f66-aebc-470a46172fb6 method: GET response: proto: HTTP/2.0 @@ -2340,20 +2340,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1058 + content_length: 1091 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":1,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[{"created_at":"2025-03-18T14:59:45.126593Z","id":"d6a4d3fc-68cc-4539-a439-34b86555536b","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-03-18T15:02:04.124971Z","zone":"fr-par-1"}],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":1,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[{"created_at":"2025-07-17T08:53:00.438990Z","id":"b78aac3a-ca5d-4c15-81d8-5aa676120706","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-07-17T08:56:48.210265Z","zone":"fr-par-1"}],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1058" + - "1091" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:05 GMT + - Thu, 17 Jul 2025 08:56:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2361,10 +2361,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 374d4e08-ce2d-40de-b6c0-5cdf459c68c8 + - 0af2ff17-ea0e-4b4f-80d7-8588ad4cda7b status: 200 OK code: 200 - duration: 74.874893ms + duration: 72.935625ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/f0d6a42f-2b22-4c5e-bc96-9c07c66365b0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/818bad95-8a9a-4e3d-b68c-215211b9b97a method: GET response: proto: HTTP/2.0 @@ -2389,20 +2389,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2846 + content_length: 2971 uncompressed: false - body: '{"backend":{"created_at":"2025-03-18T15:01:58.460375Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"tcp","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"4c8d60db-83aa-489a-8d5a-2b0c5026f1be","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":1,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-happy-lamarr","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-03-18T15:01:58.460375Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":100,"created_at":"2025-03-18T15:01:59.341934Z","enable_http3":true,"id":"f0d6a42f-2b22-4c5e-bc96-9c07c66365b0","inbound_port":443,"lb":{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":1,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-03-18T15:02:03.736828Z"}' + body: '{"backend":{"created_at":"2025-07-17T08:56:43.728659Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"tcp","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"e59e7145-3a1d-4eaf-be9e-bcb6f3cfaa46","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":1,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-mystifying-kare","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-07-17T08:56:43.728659Z"},"certificate":null,"certificate_ids":[],"connection_rate_limit":100,"created_at":"2025-07-17T08:56:44.493207Z","enable_access_logs":true,"enable_http3":true,"id":"818bad95-8a9a-4e3d-b68c-215211b9b97a","inbound_port":443,"lb":{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":1,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2025-07-17T08:56:47.753748Z"}' headers: Content-Length: - - "2846" + - "2971" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:05 GMT + - Thu, 17 Jul 2025 08:56:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2410,10 +2410,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0dec631e-341a-485e-8e0f-e0fd674f8014 + - 170bc52e-c73a-4879-bde4-8ac5498f0f71 status: 200 OK code: 200 - duration: 92.49705ms + duration: 83.11025ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/f0d6a42f-2b22-4c5e-bc96-9c07c66365b0/acls?order_by=created_at_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/818bad95-8a9a-4e3d-b68c-215211b9b97a/acls?order_by=created_at_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -2438,20 +2438,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 27 + content_length: 28 uncompressed: false body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "27" + - "28" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:05 GMT + - Thu, 17 Jul 2025 08:56:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2459,10 +2459,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e232d8b-6aac-427d-9625-e565804dab4e + - 59d20708-dc02-4bb7-9d04-b46eff4bc565 status: 200 OK code: 200 - duration: 94.632761ms + duration: 101.213541ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/f0d6a42f-2b22-4c5e-bc96-9c07c66365b0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/818bad95-8a9a-4e3d-b68c-215211b9b97a method: DELETE response: proto: HTTP/2.0 @@ -2496,9 +2496,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:06 GMT + - Thu, 17 Jul 2025 08:56:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2506,10 +2506,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d18d72c-20df-4791-936b-11c38071fb30 + - 028054b0-9e8d-45af-aaad-66a554edaac8 status: 204 No Content code: 204 - duration: 332.346657ms + duration: 351.531083ms - id: 51 request: proto: HTTP/1.1 @@ -2525,8 +2525,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/423e88d2-9298-4bff-a6a6-9374ae8315a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d4c9fe16-e524-4f66-aebc-470a46172fb6 method: GET response: proto: HTTP/2.0 @@ -2534,20 +2534,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1060 + content_length: 1093 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":0,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[{"created_at":"2025-03-18T14:59:45.126593Z","id":"d6a4d3fc-68cc-4539-a439-34b86555536b","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-03-18T15:02:06.313777Z","zone":"fr-par-1"}],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":0,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[{"created_at":"2025-07-17T08:53:00.438990Z","id":"b78aac3a-ca5d-4c15-81d8-5aa676120706","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-07-17T08:56:49.650839Z","zone":"fr-par-1"}],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1060" + - "1093" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:06 GMT + - Thu, 17 Jul 2025 08:56:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2555,10 +2555,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 070c5d89-1add-44a2-b30f-fe5a106c81b6 + - 5e1c9d38-735e-4109-8f24-b3a623422d3f status: 200 OK code: 200 - duration: 68.35941ms + duration: 76.747417ms - id: 52 request: proto: HTTP/1.1 @@ -2574,8 +2574,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/423e88d2-9298-4bff-a6a6-9374ae8315a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d4c9fe16-e524-4f66-aebc-470a46172fb6 method: GET response: proto: HTTP/2.0 @@ -2583,20 +2583,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1058 + content_length: 1093 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":0,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[{"created_at":"2025-03-18T14:59:45.126593Z","id":"d6a4d3fc-68cc-4539-a439-34b86555536b","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-03-18T15:02:06.611757Z","zone":"fr-par-1"}],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":0,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[{"created_at":"2025-07-17T08:53:00.438990Z","id":"b78aac3a-ca5d-4c15-81d8-5aa676120706","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-07-17T08:56:49.650839Z","zone":"fr-par-1"}],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1058" + - "1093" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:06 GMT + - Thu, 17 Jul 2025 08:56:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2604,10 +2604,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2aed04d3-709c-4db8-898a-3133b2369cc2 + - 4d320132-7b54-4871-88f1-1f9c024a4838 status: 200 OK code: 200 - duration: 70.489592ms + duration: 85.977959ms - id: 53 request: proto: HTTP/1.1 @@ -2623,8 +2623,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/4c8d60db-83aa-489a-8d5a-2b0c5026f1be + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/e59e7145-3a1d-4eaf-be9e-bcb6f3cfaa46 method: DELETE response: proto: HTTP/2.0 @@ -2641,9 +2641,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:06 GMT + - Thu, 17 Jul 2025 08:56:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2651,10 +2651,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72f2fd7a-a44a-4985-8dc6-cbb03bc3e150 + - e8f288d6-7fad-4de0-9d42-c188b2c339f1 status: 204 No Content code: 204 - duration: 293.624193ms + duration: 304.152625ms - id: 54 request: proto: HTTP/1.1 @@ -2670,8 +2670,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/423e88d2-9298-4bff-a6a6-9374ae8315a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d4c9fe16-e524-4f66-aebc-470a46172fb6 method: GET response: proto: HTTP/2.0 @@ -2679,20 +2679,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1060 + content_length: 1093 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":0,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[{"created_at":"2025-03-18T14:59:45.126593Z","id":"d6a4d3fc-68cc-4539-a439-34b86555536b","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-03-18T15:02:06.820608Z","zone":"fr-par-1"}],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":0,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[{"created_at":"2025-07-17T08:53:00.438990Z","id":"b78aac3a-ca5d-4c15-81d8-5aa676120706","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-07-17T08:56:50.205581Z","zone":"fr-par-1"}],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1060" + - "1093" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:07 GMT + - Thu, 17 Jul 2025 08:56:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2700,10 +2700,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3e0f0e3-df9d-4d60-820f-f3515dd30d9d + - 709128de-6d0e-44fa-8403-d23f2c349e40 status: 200 OK code: 200 - duration: 97.834373ms + duration: 119.562917ms - id: 55 request: proto: HTTP/1.1 @@ -2719,8 +2719,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/423e88d2-9298-4bff-a6a6-9374ae8315a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d4c9fe16-e524-4f66-aebc-470a46172fb6 method: GET response: proto: HTTP/2.0 @@ -2728,20 +2728,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1060 + content_length: 1093 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":0,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[{"created_at":"2025-03-18T14:59:45.126593Z","id":"d6a4d3fc-68cc-4539-a439-34b86555536b","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-03-18T15:02:06.820608Z","zone":"fr-par-1"}],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-03-18T15:01:31.447798Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":0,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[{"created_at":"2025-07-17T08:53:00.438990Z","id":"b78aac3a-ca5d-4c15-81d8-5aa676120706","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-07-17T08:56:50.205581Z","zone":"fr-par-1"}],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-07-17T08:56:16.294522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1060" + - "1093" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:07 GMT + - Thu, 17 Jul 2025 08:56:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2749,10 +2749,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e6c5cc8-fc7e-49e3-8c08-5ee306db3135 + - 107a60f3-90c5-4c08-a97b-899bed0015e0 status: 200 OK code: 200 - duration: 80.059585ms + duration: 77.608875ms - id: 56 request: proto: HTTP/1.1 @@ -2768,8 +2768,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/423e88d2-9298-4bff-a6a6-9374ae8315a3?release_ip=false + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d4c9fe16-e524-4f66-aebc-470a46172fb6?release_ip=false method: DELETE response: proto: HTTP/2.0 @@ -2786,9 +2786,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:07 GMT + - Thu, 17 Jul 2025 08:56:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2796,10 +2796,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ef37eca-e04d-4ea2-b0e4-5aa5847e9767 + - bb9776bb-8434-4f25-8d52-952e0096447d status: 204 No Content code: 204 - duration: 446.864602ms + duration: 292.03775ms - id: 57 request: proto: HTTP/1.1 @@ -2815,8 +2815,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/423e88d2-9298-4bff-a6a6-9374ae8315a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d4c9fe16-e524-4f66-aebc-470a46172fb6 method: GET response: proto: HTTP/2.0 @@ -2824,20 +2824,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1062 + content_length: 1095 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-03-18T15:01:27.731875Z","description":"","frontend_count":0,"id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","instances":[{"created_at":"2025-03-18T14:59:45.126593Z","id":"d6a4d3fc-68cc-4539-a439-34b86555536b","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-03-18T15:02:07.191731Z","zone":"fr-par-1"}],"ip":[{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":"423e88d2-9298-4bff-a6a6-9374ae8315a3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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-03-18T15:02:07.274561Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-07-17T08:56:12.919751Z","description":"","frontend_count":0,"id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","instances":[{"created_at":"2025-07-17T08:53:00.438990Z","id":"b78aac3a-ca5d-4c15-81d8-5aa676120706","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-07-17T08:56:50.673566Z","zone":"fr-par-1"}],"ip":[{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":"d4c9fe16-e524-4f66-aebc-470a46172fb6","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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-07-17T08:56:50.659620Z","zone":"fr-par-1"}' headers: Content-Length: - - "1062" + - "1095" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:07 GMT + - Thu, 17 Jul 2025 08:56:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2845,10 +2845,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e684b67-01ac-45da-a4d9-8ad04638bd1c + - 54ce5686-9fbb-4929-ab0e-f1639c63d655 status: 200 OK code: 200 - duration: 92.961811ms + duration: 73.388416ms - id: 58 request: proto: HTTP/1.1 @@ -2864,8 +2864,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/423e88d2-9298-4bff-a6a6-9374ae8315a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d4c9fe16-e524-4f66-aebc-470a46172fb6 method: GET response: proto: HTTP/2.0 @@ -2884,9 +2884,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:37 GMT + - Thu, 17 Jul 2025 08:57:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2894,10 +2894,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f08fbe8-d5ec-4b3f-91c8-dcd80a54af73 + - 8addbe81-ba1f-4dd9-b604-e7585b83b2b6 status: 404 Not Found code: 404 - duration: 30.376882ms + duration: 29.406708ms - id: 59 request: proto: HTTP/1.1 @@ -2913,8 +2913,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/423e88d2-9298-4bff-a6a6-9374ae8315a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d4c9fe16-e524-4f66-aebc-470a46172fb6 method: GET response: proto: HTTP/2.0 @@ -2933,9 +2933,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:37 GMT + - Thu, 17 Jul 2025 08:57:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2943,10 +2943,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1dc10d9e-ef5e-4707-9b52-c504f4d33efa + - 2a7a6ed6-ca38-4f20-813b-097bb50cf5dc status: 404 Not Found code: 404 - duration: 37.746768ms + duration: 61.265ms - id: 60 request: proto: HTTP/1.1 @@ -2962,8 +2962,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cc53ed9d-dbcd-4194-bf5f-434480603009 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/d8f9b59f-c9f7-4632-a8e4-bb54d578e18d method: GET response: proto: HTTP/2.0 @@ -2971,20 +2971,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 288 + content_length: 296 uncompressed: false - body: '{"id":"cc53ed9d-dbcd-4194-bf5f-434480603009","ip_address":"51.159.114.42","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-114-42.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"id":"d8f9b59f-c9f7-4632-a8e4-bb54d578e18d","ip_address":"51.15.249.187","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-249-187.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "288" + - "296" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:37 GMT + - Thu, 17 Jul 2025 08:57:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2992,10 +2992,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4554198-22db-41fa-9375-004be33f88bd + - d175d7fd-6672-4f2e-b3b2-a081c4677fd2 status: 200 OK code: 200 - duration: 39.626525ms + duration: 48.474458ms - id: 61 request: proto: HTTP/1.1 @@ -3011,8 +3011,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cc53ed9d-dbcd-4194-bf5f-434480603009 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/d8f9b59f-c9f7-4632-a8e4-bb54d578e18d method: DELETE response: proto: HTTP/2.0 @@ -3029,9 +3029,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:38 GMT + - Thu, 17 Jul 2025 08:57:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3039,10 +3039,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96e0e0a0-48a5-47bc-9c1e-9d15cd4fd0de + - da16b3a4-b595-4bd4-94c6-4f1645ce65a7 status: 204 No Content code: 204 - duration: 256.614567ms + duration: 377.326833ms - id: 62 request: proto: HTTP/1.1 @@ -3058,8 +3058,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/f0d6a42f-2b22-4c5e-bc96-9c07c66365b0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/818bad95-8a9a-4e3d-b68c-215211b9b97a method: GET response: proto: HTTP/2.0 @@ -3078,9 +3078,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 18 Mar 2025 15:02:38 GMT + - Thu, 17 Jul 2025 08:57:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3088,7 +3088,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 43c014f2-f088-43f9-ad07-ec0249e67e07 + - 6ddce387-176d-4e5c-b575-e3cd1740e0d6 status: 404 Not Found code: 404 - duration: 20.229688ms + duration: 24.054083ms