diff --git a/docs/resources/lb_backend.md b/docs/resources/lb_backend.md index 01164f4d85..ab837a6bc3 100644 --- a/docs/resources/lb_backend.md +++ b/docs/resources/lb_backend.md @@ -72,24 +72,24 @@ e.g. 'failover-website.s3-website.fr-par.scw.cloud' if your bucket website URL i Backends use Health Check to test if a backend server is ready to receive requests. You may use one of the following health check types: `TCP`, `HTTP` or `HTTPS`. (Default: `TCP`) -- `health_check_timeout` - (Default: `30s`) Timeout before we consider a HC request failed. -- `health_check_delay` - (Default: `60s`) Interval between two HC requests. -- `health_check_port` - (Default: `forward_port`) Port the HC requests will be send to. -- `health_check_max_retries` - (Default: `2`) Number of allowed failed HC requests before the backend server is marked down. -- `health_check_tcp` - (Optional) This block enable TCP health check. Only one of `health_check_tcp`, `health_check_http` and `health_check_https` should be specified. -- `health_check_http` - (Optional) This block enable HTTP health check. Only one of `health_check_tcp`, `health_check_http` and `health_check_https` should be specified. - - `uri` - (Required) The HTTP endpoint URL to call for HC requests. - - `method` - (Default: `GET`) The HTTP method to use for HC requests. - - `code` - (Default: `200`) The expected HTTP status code. - - `host_header` - (Optional) The HTTP host header to use for HC requests. -- `health_check_https` - (Optional) This block enable HTTPS health check. Only one of `health_check_tcp`, `health_check_http` and `health_check_https` should be specified. - - `uri` - (Required) The HTTPS endpoint URL to call for HC requests. - - `method` - (Default: `GET`) The HTTP method to use for HC requests. - - `code` - (Default: `200`) The expected HTTP status code. - - `host_header` - (Optional) The HTTP host header to use for HC requests. - - `sni` - (Optional) The SNI to use for HC requests over SSL. -- `on_marked_down_action` - (Default: `none`) Modify what occurs when a backend server is marked down. Possible values are: `none` and `shutdown_sessions`. - +- `health_check_timeout` - (Default: `30s`) Timeout before we consider a HC request failed. +- `health_check_delay` - (Default: `60s`) Interval between two HC requests. +- `health_check_port` - (Default: `forward_port`) Port the HC requests will be send to. +- `health_check_max_retries` - (Default: `2`) Number of allowed failed HC requests before the backend server is marked down. +- `health_check_tcp` - (Optional) This block enable TCP health check. Only one of `health_check_tcp`, `health_check_http` and `health_check_https` should be specified. +- `health_check_http` - (Optional) This block enable HTTP health check. Only one of `health_check_tcp`, `health_check_http` and `health_check_https` should be specified. + - `uri` - (Required) The HTTP endpoint URL to call for HC requests. + - `method` - (Default: `GET`) The HTTP method to use for HC requests. + - `code` - (Default: `200`) The expected HTTP status code. + - `host_header` - (Optional) The HTTP host header to use for HC requests. +- `health_check_https` - (Optional) This block enable HTTPS health check. Only one of `health_check_tcp`, `health_check_http` and `health_check_https` should be specified. + - `uri` - (Required) The HTTPS endpoint URL to call for HC requests. + - `method` - (Default: `GET`) The HTTP method to use for HC requests. + - `code` - (Default: `200`) The expected HTTP status code. + - `host_header` - (Optional) The HTTP host header to use for HC requests. + - `sni` - (Optional) The SNI to use for HC requests over SSL. +- `on_marked_down_action` - (Default: `none`) Modify what occurs when a backend server is marked down. Possible values are: `none` and `shutdown_sessions`. +- `health_check_transient_delay` - (Default: `0.5s`) The time to wait between two consecutive health checks when a backend server is in a transient state (going UP or DOWN). ## Attributes Reference diff --git a/scaleway/resource_lb_backend.go b/scaleway/resource_lb_backend.go index 1688a40954..b10dfbb214 100644 --- a/scaleway/resource_lb_backend.go +++ b/scaleway/resource_lb_backend.go @@ -249,6 +249,14 @@ func resourceScalewayLbBackend() *schema.Resource { }, }, }, + "health_check_transient_delay": { + Type: schema.TypeString, + Optional: true, + Default: "0.5s", + ValidateFunc: validateDuration(), + DiffSuppressFunc: diffSuppressFuncDuration, + Description: "Time to wait between two consecutive health checks when a backend server is in a transient state (going UP or DOWN)", + }, "on_marked_down_action": { Type: schema.TypeString, ValidateFunc: validation.StringInSlice([]string{ @@ -286,11 +294,12 @@ E.g. 'failover-website.s3-website.fr-par.scw.cloud' if your bucket website URL i Description: "Maximum number of connections allowed per backend server", }, "timeout_queue": { - Type: schema.TypeString, - Optional: true, - Default: "0s", - ValidateFunc: validateDuration(), - Description: "Maximum time (in seconds) for a request to be left pending in queue when `max_connections` is reached", + Type: schema.TypeString, + Optional: true, + Default: "0s", + ValidateFunc: validateDuration(), + DiffSuppressFunc: diffSuppressFuncDuration, + Description: "Maximum time (in seconds) for a request to be left pending in queue when `max_connections` is reached", }, "redispatch_attempt_count": { Type: schema.TypeInt, @@ -399,6 +408,13 @@ func resourceScalewayLbBackendCreate(ctx context.Context, d *schema.ResourceData if maxRetries, ok := d.GetOk("max_retries"); ok { createReq.MaxRetries = expandInt32Ptr(maxRetries) } + if healthCheckTransientDelay, ok := d.GetOk("health_check_transient_delay"); ok { + timeout, err := time.ParseDuration(healthCheckTransientDelay.(string)) + if err != nil { + return diag.FromErr(err) + } + createReq.HealthCheck.TransientCheckDelay = &scw.Duration{Seconds: int64(timeout.Seconds()), Nanos: int32(timeout.Nanoseconds())} + } // deprecated attribute createReq.SendProxyV2 = expandBoolPtr(getBool(d, "send_proxy_v2")) @@ -467,10 +483,8 @@ func resourceScalewayLbBackendRead(ctx context.Context, d *schema.ResourceData, _ = d.Set("max_connections", flattenInt32Ptr(backend.MaxConnections)) _ = d.Set("redispatch_attempt_count", flattenInt32Ptr(backend.RedispatchAttemptCount)) _ = d.Set("max_retries", flattenInt32Ptr(backend.MaxRetries)) - - if backend.TimeoutQueue != nil { - _ = d.Set("timeout_queue", flattenDuration(backend.TimeoutQueue.ToTimeDuration())) - } + _ = d.Set("timeout_queue", flattenDuration(backend.TimeoutQueue.ToTimeDuration())) + _ = d.Set("health_check_transient_delay", flattenDuration(backend.HealthCheck.TransientCheckDelay.ToTimeDuration())) _, err = waitForLB(ctx, lbAPI, zone, backend.LB.ID, d.Timeout(schema.TimeoutRead)) if err != nil { @@ -575,6 +589,13 @@ func resourceScalewayLbBackendUpdate(ctx context.Context, d *schema.ResourceData HTTPConfig: expandLbHCHTTP(d.Get("health_check_http")), HTTPSConfig: expandLbHCHTTPS(d.Get("health_check_https")), } + if healthCheckTransientDelay, ok := d.GetOk("health_check_transient_delay"); ok { + timeout, err := time.ParseDuration(healthCheckTransientDelay.(string)) + if err != nil { + return diag.FromErr(err) + } + updateHCRequest.TransientCheckDelay = &scw.Duration{Seconds: int64(timeout.Seconds()), Nanos: int32(timeout.Nanoseconds())} + } // As this is the default behaviour if no other HC type are present we enable TCP if updateHCRequest.HTTPConfig == nil && updateHCRequest.HTTPSConfig == nil { diff --git a/scaleway/resource_lb_backend_test.go b/scaleway/resource_lb_backend_test.go index b75d0c2a73..3501018b99 100644 --- a/scaleway/resource_lb_backend_test.go +++ b/scaleway/resource_lb_backend_test.go @@ -56,6 +56,7 @@ func TestAccScalewayLbBackend_Basic(t *testing.T) { resource.TestCheckResourceAttr("scaleway_lb_backend.bkd01", "ignore_ssl_server_verify", "false"), resource.TestCheckResourceAttr("scaleway_lb_backend.bkd01", "redispatch_attempt_count", "0"), resource.TestCheckResourceAttr("scaleway_lb_backend.bkd01", "max_retries", "3"), + resource.TestCheckResourceAttr("scaleway_lb_backend.bkd01", "health_check_transient_delay", "500ms"), ), }, { @@ -94,6 +95,7 @@ func TestAccScalewayLbBackend_Basic(t *testing.T) { timeout_queue = "4s" redispatch_attempt_count = 1 max_retries = 6 + health_check_transient_delay = "0.2s" } `, Check: resource.ComposeTestCheckFunc( @@ -114,6 +116,7 @@ func TestAccScalewayLbBackend_Basic(t *testing.T) { resource.TestCheckResourceAttr("scaleway_lb_backend.bkd01", "timeout_queue", "4s"), resource.TestCheckResourceAttr("scaleway_lb_backend.bkd01", "redispatch_attempt_count", "1"), resource.TestCheckResourceAttr("scaleway_lb_backend.bkd01", "max_retries", "6"), + resource.TestCheckResourceAttr("scaleway_lb_backend.bkd01", "health_check_transient_delay", "200ms"), ), }, }, diff --git a/scaleway/testdata/data-source-lb-acls-basic.cassette.yaml b/scaleway/testdata/data-source-lb-acls-basic.cassette.yaml index 38e408592c..cbec69c5b4 100644 --- a/scaleway/testdata/data-source-lb-acls-basic.cassette.yaml +++ b/scaleway/testdata/data-source-lb-acls-basic.cassette.yaml @@ -13,16 +13,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips method: POST response: - body: '{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "287" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:21:38 GMT + - Mon, 03 Jul 2023 20:02:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -32,7 +32,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29326f98-bf1f-402b-b3f2-b2dd13594c19 + - 5169a5aa-6f60-4305-bef1-03f51b00b8ae status: 200 OK code: 200 duration: "" @@ -43,19 +43,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c6b47cd5-7fca-4acc-bde4-e32e91f58310 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "287" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:21:38 GMT + - Mon, 03 Jul 2023 20:02:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -65,12 +65,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 897085c6-27d1-4eeb-a66f-3781c5f93907 + - 0ff9554b-cf2d-42e7-9863-45113f999b9d status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-lb","description":"","ip_id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","assign_flexible_ip":null,"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":"86df9ff8-7a77-492d-9b03-4f6205127499","assign_flexible_ip":null,"tags":null,"type":"lb-s","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' form: {} headers: Content-Type: @@ -81,16 +81,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs method: POST response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:21:39.042945849Z","description":"","frontend_count":0,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:39.042945849Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:02:08.454777989Z","description":"","frontend_count":0,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:08.454777989Z","zone":"fr-par-1"}' headers: Content-Length: - - "886" + - "862" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:21:39 GMT + - Mon, 03 Jul 2023 20:02:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -100,7 +100,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cfc1b5f4-98dd-4b2e-b0a7-c5a6b7e1e15f + - f8f87161-91dc-4048-b7f5-495604eaef78 status: 200 OK code: 200 duration: "" @@ -111,19 +111,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9770e9d9-98e7-4cc4-ba37-555b61b97a42 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/96075caf-1a73-4675-9d63-7a72a2334a40 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":0,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:39.042946Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":0,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:08.454778Z","zone":"fr-par-1"}' headers: Content-Length: - - "880" + - "856" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:21:39 GMT + - Mon, 03 Jul 2023 20:02:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -133,7 +133,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db2aee9c-5488-4741-8c04-23bf26cc9710 + - 0c3db102-41ba-4eb7-ab4e-022118fb563a status: 200 OK code: 200 duration: "" @@ -144,19 +144,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9770e9d9-98e7-4cc4-ba37-555b61b97a42 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/96075caf-1a73-4675-9d63-7a72a2334a40 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":0,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[{"created_at":"2023-06-29T13:17:34.624761Z","id":"35e60881-d349-4bd1-b91e-f749267614b5","ip_address":"10.74.36.109","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:21:40.246112Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":0,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[{"created_at":"2023-07-03T18:26:56.134573Z","id":"b2f4d49b-3c0e-4e72-b217-a91edd241518","ip_address":"10.71.8.3","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:02:09.416282Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"}' headers: Content-Length: - - "1094" + - "1061" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:09 GMT + - Mon, 03 Jul 2023 20:02:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -166,7 +166,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bad9cbfb-b395-4303-9af7-b402f5bf7ecf + - 2f8ef67d-ea0a-4788-9d85-6eff971d57d0 status: 200 OK code: 200 duration: "" @@ -177,19 +177,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9770e9d9-98e7-4cc4-ba37-555b61b97a42 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/96075caf-1a73-4675-9d63-7a72a2334a40 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":0,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[{"created_at":"2023-06-29T13:17:34.624761Z","id":"35e60881-d349-4bd1-b91e-f749267614b5","ip_address":"10.74.36.109","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:21:40.246112Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":0,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[{"created_at":"2023-07-03T18:26:56.134573Z","id":"b2f4d49b-3c0e-4e72-b217-a91edd241518","ip_address":"10.71.8.3","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:02:09.416282Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"}' headers: Content-Length: - - "1094" + - "1061" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:09 GMT + - Mon, 03 Jul 2023 20:02:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -199,7 +199,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dec415ce-3c04-4cb6-9a02-3b32378a74c5 + - f37e63b0-9748-4e86-a72c-c0c0d227cf9b status: 200 OK code: 200 duration: "" @@ -210,19 +210,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9770e9d9-98e7-4cc4-ba37-555b61b97a42/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/96075caf-1a73-4675-9d63-7a72a2334a40/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:09 GMT + - Mon, 03 Jul 2023 20:02:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -232,7 +232,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b26d9f9-52d5-4a19-8583-40eb7ce2f8ac + - 8fe8da44-4fa1-4b1d-810d-725036cd4acf status: 200 OK code: 200 duration: "" @@ -243,19 +243,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9770e9d9-98e7-4cc4-ba37-555b61b97a42 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/96075caf-1a73-4675-9d63-7a72a2334a40 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":0,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[{"created_at":"2023-06-29T13:17:34.624761Z","id":"35e60881-d349-4bd1-b91e-f749267614b5","ip_address":"10.74.36.109","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:21:40.246112Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":0,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[{"created_at":"2023-07-03T18:26:56.134573Z","id":"b2f4d49b-3c0e-4e72-b217-a91edd241518","ip_address":"10.71.8.3","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:02:09.416282Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"}' headers: Content-Length: - - "1094" + - "1061" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:09 GMT + - Mon, 03 Jul 2023 20:02:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -265,12 +265,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1baa3ba-440e-4178-ae6e-4d404d81a1d0 + - b74aefdd-58e8-4081-86c9-18fa0153cb39 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-bkd-clever-bhaskara","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_max_retries":2,"check_send_proxy":false,"transient_check_delay":null,"check_delay":60000,"check_timeout":30000},"server_ip":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":null,"max_retries":3,"max_connections":null,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' + body: '{"name":"tf-lb-bkd-sharp-mahavira","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_max_retries":2,"check_send_proxy":false,"transient_check_delay":"0.500000000s","check_delay":60000,"check_timeout":30000},"server_ip":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":null,"max_retries":3,"max_connections":null,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' form: {} headers: Content-Type: @@ -278,19 +278,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9770e9d9-98e7-4cc4-ba37-555b61b97a42/backends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/96075caf-1a73-4675-9d63-7a72a2334a40/backends method: POST response: - body: '{"created_at":"2023-06-29T13:22:09.721122926Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":0,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[{"created_at":"2023-06-29T13:17:34.624761Z","id":"35e60881-d349-4bd1-b91e-f749267614b5","ip_address":"10.74.36.109","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:22:09.767033390Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721122926Z"}' + body: '{"created_at":"2023-07-03T20:02:39.163118244Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":0,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[{"created_at":"2023-07-03T18:26:56.134573Z","id":"b2f4d49b-3c0e-4e72-b217-a91edd241518","ip_address":"10.71.8.3","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:02:39.194325651Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118244Z"}' headers: Content-Length: - - "1970" + - "1910" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:09 GMT + - Mon, 03 Jul 2023 20:02:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -300,7 +300,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 407ae63f-587a-451f-a78c-4c88fcb21962 + - 52e17403-0248-4d09-baa0-4f13f1c07cdc status: 200 OK code: 200 duration: "" @@ -311,19 +311,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9770e9d9-98e7-4cc4-ba37-555b61b97a42 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/96075caf-1a73-4675-9d63-7a72a2334a40 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":0,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[{"created_at":"2023-06-29T13:17:34.624761Z","id":"35e60881-d349-4bd1-b91e-f749267614b5","ip_address":"10.74.36.109","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:22:09.987270Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":0,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[{"created_at":"2023-07-03T18:26:56.134573Z","id":"b2f4d49b-3c0e-4e72-b217-a91edd241518","ip_address":"10.71.8.3","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:02:39.194326Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"}' headers: Content-Length: - - "1094" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:10 GMT + - Mon, 03 Jul 2023 20:02:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -333,7 +333,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f2c78c1-33d6-4a79-9ead-1fdda5f53d55 + - c7ea65e2-ef95-44c7-8d69-15d335036781 status: 200 OK code: 200 duration: "" @@ -344,19 +344,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/d7b3fd70-e523-4016-a793-f2575575d3df method: GET response: - body: '{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":0,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[{"created_at":"2023-06-29T13:17:34.624761Z","id":"35e60881-d349-4bd1-b91e-f749267614b5","ip_address":"10.74.36.109","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:22:09.987270Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"}' + body: '{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":0,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[{"created_at":"2023-07-03T18:26:56.134573Z","id":"b2f4d49b-3c0e-4e72-b217-a91edd241518","ip_address":"10.71.8.3","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:02:39.194326Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"}' headers: Content-Length: - - "1959" + - "1901" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:10 GMT + - Mon, 03 Jul 2023 20:02:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -366,7 +366,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 007ae02f-cac8-4fc0-9923-c32b3de076b8 + - 8ed6ba7e-c261-4a10-b055-7cac26ecf33d status: 200 OK code: 200 duration: "" @@ -377,19 +377,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9770e9d9-98e7-4cc4-ba37-555b61b97a42 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/96075caf-1a73-4675-9d63-7a72a2334a40 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":0,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[{"created_at":"2023-06-29T13:17:34.624761Z","id":"35e60881-d349-4bd1-b91e-f749267614b5","ip_address":"10.74.36.109","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:22:09.987270Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":0,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[{"created_at":"2023-07-03T18:26:56.134573Z","id":"b2f4d49b-3c0e-4e72-b217-a91edd241518","ip_address":"10.71.8.3","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:02:39.457929Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"}' headers: Content-Length: - - "1094" + - "1061" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:10 GMT + - Mon, 03 Jul 2023 20:02:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -399,7 +399,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 865bf39d-f5b1-48a6-9339-346f64ff7132 + - 13ad9ecd-f2dd-484c-845e-6b493edc87a0 status: 200 OK code: 200 duration: "" @@ -410,19 +410,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9770e9d9-98e7-4cc4-ba37-555b61b97a42 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/96075caf-1a73-4675-9d63-7a72a2334a40 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":0,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[{"created_at":"2023-06-29T13:17:34.624761Z","id":"35e60881-d349-4bd1-b91e-f749267614b5","ip_address":"10.74.36.109","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:22:09.987270Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":0,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[{"created_at":"2023-07-03T18:26:56.134573Z","id":"b2f4d49b-3c0e-4e72-b217-a91edd241518","ip_address":"10.71.8.3","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:02:39.457929Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"}' headers: Content-Length: - - "1094" + - "1061" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:10 GMT + - Mon, 03 Jul 2023 20:02:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -432,12 +432,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8bf0d235-82ba-45d6-8f58-5f6a486ac416 + - dc0be74d-ffa7-4a58-9479-6958c53d773b status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-frt-nice-swartz","inbound_port":50000,"backend_id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","certificate_ids":null,"enable_http3":false,"timeout_client":null}' + body: '{"name":"tf-lb-frt-wizardly-heisenberg","inbound_port":50000,"backend_id":"d7b3fd70-e523-4016-a793-f2575575d3df","certificate_ids":null,"enable_http3":false,"timeout_client":null}' form: {} headers: Content-Type: @@ -445,19 +445,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9770e9d9-98e7-4cc4-ba37-555b61b97a42/frontends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/96075caf-1a73-4675-9d63-7a72a2334a40/frontends method: POST response: - body: '{"backend":{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:22:10.442912Z","enable_http3":false,"id":"df121383-79ee-45da-854b-f99a3fef67ea","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[{"created_at":"2023-06-29T13:17:34.624761Z","id":"35e60881-d349-4bd1-b91e-f749267614b5","ip_address":"10.74.36.109","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:22:10.497183124Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"name":"tf-lb-frt-nice-swartz","timeout_client":null,"updated_at":"2023-06-29T13:22:10.442912Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:02:39.846200Z","enable_http3":false,"id":"8093f9e6-14f6-4fe5-9290-4127979f9c11","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[{"created_at":"2023-07-03T18:26:56.134573Z","id":"b2f4d49b-3c0e-4e72-b217-a91edd241518","ip_address":"10.71.8.3","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:02:39.898566064Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"name":"tf-lb-frt-wizardly-heisenberg","timeout_client":null,"updated_at":"2023-07-03T20:02:39.846200Z"}' headers: Content-Length: - - "3133" + - "3047" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:10 GMT + - Mon, 03 Jul 2023 20:02:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -467,7 +467,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 280118c7-b140-42f6-9d65-7e705865dfc2 + - 27ffca51-0f45-4b70-9288-77c8544994e1 status: 200 OK code: 200 duration: "" @@ -478,19 +478,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9770e9d9-98e7-4cc4-ba37-555b61b97a42 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/96075caf-1a73-4675-9d63-7a72a2334a40 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[{"created_at":"2023-06-29T13:17:34.624761Z","id":"35e60881-d349-4bd1-b91e-f749267614b5","ip_address":"10.74.36.109","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:22:10.497183Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[{"created_at":"2023-07-03T18:26:56.134573Z","id":"b2f4d49b-3c0e-4e72-b217-a91edd241518","ip_address":"10.71.8.3","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:02:40.189724Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"}' headers: Content-Length: - - "1096" + - "1061" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:10 GMT + - Mon, 03 Jul 2023 20:02:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -500,12 +500,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d8a0fa1-f44a-4db3-b702-64e41f9d60ff + - 8552c504-a1c3-4e50-ae5a-c8ff8ac23d58 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-frt-kind-bardeen","inbound_port":50000,"backend_id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","certificate_ids":null,"enable_http3":false,"timeout_client":null}' + body: '{"name":"tf-lb-frt-naughty-einstein","inbound_port":50000,"backend_id":"d7b3fd70-e523-4016-a793-f2575575d3df","certificate_ids":null,"enable_http3":false,"timeout_client":null}' form: {} headers: Content-Type: @@ -513,19 +513,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/df121383-79ee-45da-854b-f99a3fef67ea + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/8093f9e6-14f6-4fe5-9290-4127979f9c11 method: PUT response: - body: '{"backend":{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:22:10.442912Z","enable_http3":false,"id":"df121383-79ee-45da-854b-f99a3fef67ea","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[{"created_at":"2023-06-29T13:17:34.624761Z","id":"35e60881-d349-4bd1-b91e-f749267614b5","ip_address":"10.74.36.109","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:22:11.084480503Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"name":"tf-lb-frt-kind-bardeen","timeout_client":null,"updated_at":"2023-06-29T13:22:11.053373098Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:02:39.846200Z","enable_http3":false,"id":"8093f9e6-14f6-4fe5-9290-4127979f9c11","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[{"created_at":"2023-07-03T18:26:56.134573Z","id":"b2f4d49b-3c0e-4e72-b217-a91edd241518","ip_address":"10.71.8.3","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:02:40.445017813Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"name":"tf-lb-frt-naughty-einstein","timeout_client":null,"updated_at":"2023-07-03T20:02:40.411043278Z"}' headers: Content-Length: - - "3137" + - "3047" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:11 GMT + - Mon, 03 Jul 2023 20:02:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -535,7 +535,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 108f59a2-473a-45ec-98c6-e235cc7e3e5f + - ef9a9ab9-42c4-485b-912a-751142b4adb3 status: 200 OK code: 200 duration: "" @@ -546,19 +546,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/df121383-79ee-45da-854b-f99a3fef67ea/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/8093f9e6-14f6-4fe5-9290-4127979f9c11/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:11 GMT + - Mon, 03 Jul 2023 20:02:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -568,7 +568,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88597c17-6e78-4e45-92ea-e71dbd98b33b + - 1990e640-ce09-4e72-800a-7e866cb180ed status: 200 OK code: 200 duration: "" @@ -581,19 +581,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/df121383-79ee-45da-854b-f99a3fef67ea/acls + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/8093f9e6-14f6-4fe5-9290-4127979f9c11/acls method: POST response: - body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:22:11.475111935Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:22:10.442912Z","enable_http3":false,"id":"df121383-79ee-45da-854b-f99a3fef67ea","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"name":"tf-lb-frt-kind-bardeen","timeout_client":null,"updated_at":"2023-06-29T13:22:11.053373Z"},"id":"e40aec03-5633-4f1b-8709-02ebd6a8bbc8","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1"]},"name":"tf-acl-datasource0","updated_at":"2023-06-29T13:22:11.475111935Z"}' + body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:02:40.835067759Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:02:39.846200Z","enable_http3":false,"id":"8093f9e6-14f6-4fe5-9290-4127979f9c11","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"name":"tf-lb-frt-naughty-einstein","timeout_client":null,"updated_at":"2023-07-03T20:02:40.411043Z"},"id":"a5d7ef2f-498a-4ca5-a30e-2ce5d967b16a","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1"]},"name":"tf-acl-datasource0","updated_at":"2023-07-03T20:02:40.835067759Z"}' headers: Content-Length: - - "3308" + - "3214" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:11 GMT + - Mon, 03 Jul 2023 20:02:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -603,7 +603,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9eae5e3-5117-49e5-a76d-bfc80fb6cde8 + - 220360b8-9edf-4935-a981-8612d1ecfb41 status: 200 OK code: 200 duration: "" @@ -614,19 +614,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/df121383-79ee-45da-854b-f99a3fef67ea + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/8093f9e6-14f6-4fe5-9290-4127979f9c11 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:22:10.442912Z","enable_http3":false,"id":"df121383-79ee-45da-854b-f99a3fef67ea","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"name":"tf-lb-frt-kind-bardeen","timeout_client":null,"updated_at":"2023-06-29T13:22:11.053373Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:02:39.846200Z","enable_http3":false,"id":"8093f9e6-14f6-4fe5-9290-4127979f9c11","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"name":"tf-lb-frt-naughty-einstein","timeout_client":null,"updated_at":"2023-07-03T20:02:40.411043Z"}' headers: Content-Length: - - "2911" + - "2830" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:11 GMT + - Mon, 03 Jul 2023 20:02:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -636,7 +636,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a9e4dfaf-1a36-488a-9464-6276a940acd2 + - a1e0ca23-50f1-4d5b-9d83-84147623132f status: 200 OK code: 200 duration: "" @@ -647,19 +647,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/df121383-79ee-45da-854b-f99a3fef67ea/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/8093f9e6-14f6-4fe5-9290-4127979f9c11/acls?order_by=created_at_asc&page=1 method: GET response: - body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:22:11.475112Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:22:10.442912Z","enable_http3":false,"id":"df121383-79ee-45da-854b-f99a3fef67ea","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"name":"tf-lb-frt-kind-bardeen","timeout_client":null,"updated_at":"2023-06-29T13:22:11.053373Z"},"id":"e40aec03-5633-4f1b-8709-02ebd6a8bbc8","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1"]},"name":"tf-acl-datasource0","updated_at":"2023-06-29T13:22:11.475112Z"}],"total_count":1}' + body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:02:40.835068Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:02:39.846200Z","enable_http3":false,"id":"8093f9e6-14f6-4fe5-9290-4127979f9c11","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"name":"tf-lb-frt-naughty-einstein","timeout_client":null,"updated_at":"2023-07-03T20:02:40.411043Z"},"id":"a5d7ef2f-498a-4ca5-a30e-2ce5d967b16a","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1"]},"name":"tf-acl-datasource0","updated_at":"2023-07-03T20:02:40.835068Z"}],"total_count":1}' headers: Content-Length: - - "3330" + - "3235" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:11 GMT + - Mon, 03 Jul 2023 20:02:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -669,7 +669,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 099a2ddb-788e-416f-9d51-66899905c0b0 + - 98f7f08f-fa3a-4cf7-b05b-8892d8812e83 status: 200 OK code: 200 duration: "" @@ -680,19 +680,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c6b47cd5-7fca-4acc-bde4-e32e91f58310 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "321" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:12 GMT + - Mon, 03 Jul 2023 20:02:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -702,7 +702,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44d834c8-f443-4857-ac91-e266d5bb61c7 + - 4f80d096-95b9-4c29-bab4-4cade192ff32 status: 200 OK code: 200 duration: "" @@ -713,19 +713,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9770e9d9-98e7-4cc4-ba37-555b61b97a42 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/96075caf-1a73-4675-9d63-7a72a2334a40 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[{"created_at":"2023-06-29T13:17:34.624761Z","id":"35e60881-d349-4bd1-b91e-f749267614b5","ip_address":"10.74.36.109","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:22:11.823417Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[{"created_at":"2023-07-03T18:26:56.134573Z","id":"b2f4d49b-3c0e-4e72-b217-a91edd241518","ip_address":"10.71.8.3","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:02:41.216125Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"}' headers: Content-Length: - - "1094" + - "1061" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:12 GMT + - Mon, 03 Jul 2023 20:02:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -735,7 +735,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40b67930-9d6b-4960-8f57-f4aa2ea28683 + - 3ac6d176-c204-4ffd-8ca4-0b100a5775fb status: 200 OK code: 200 duration: "" @@ -746,19 +746,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9770e9d9-98e7-4cc4-ba37-555b61b97a42 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/96075caf-1a73-4675-9d63-7a72a2334a40 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[{"created_at":"2023-06-29T13:17:34.624761Z","id":"35e60881-d349-4bd1-b91e-f749267614b5","ip_address":"10.74.36.109","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:22:11.823417Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[{"created_at":"2023-07-03T18:26:56.134573Z","id":"b2f4d49b-3c0e-4e72-b217-a91edd241518","ip_address":"10.71.8.3","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:02:41.216125Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"}' headers: Content-Length: - - "1094" + - "1061" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:12 GMT + - Mon, 03 Jul 2023 20:02:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -768,7 +768,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e135a3f0-6569-4d64-aaa7-2b02f7abeb5f + - fef93eef-994a-4704-9540-96f520409708 status: 200 OK code: 200 duration: "" @@ -779,19 +779,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9770e9d9-98e7-4cc4-ba37-555b61b97a42/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/96075caf-1a73-4675-9d63-7a72a2334a40/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:12 GMT + - Mon, 03 Jul 2023 20:02:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -801,7 +801,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1100ada5-e74e-4a15-9a12-2785a656ced7 + - c2eee06c-840e-4973-b492-a630105fc9c9 status: 200 OK code: 200 duration: "" @@ -812,19 +812,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/d7b3fd70-e523-4016-a793-f2575575d3df method: GET response: - body: '{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[{"created_at":"2023-06-29T13:17:34.624761Z","id":"35e60881-d349-4bd1-b91e-f749267614b5","ip_address":"10.74.36.109","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:22:11.823417Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"}' + body: '{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[{"created_at":"2023-07-03T18:26:56.134573Z","id":"b2f4d49b-3c0e-4e72-b217-a91edd241518","ip_address":"10.71.8.3","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:02:41.216125Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"}' headers: Content-Length: - - "1959" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:12 GMT + - Mon, 03 Jul 2023 20:02:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -834,7 +834,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34379b09-8599-42f1-9caa-7c5a74868980 + - 99631335-4625-4e2b-bffc-59eb5f3e1975 status: 200 OK code: 200 duration: "" @@ -845,19 +845,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9770e9d9-98e7-4cc4-ba37-555b61b97a42 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/96075caf-1a73-4675-9d63-7a72a2334a40 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[{"created_at":"2023-06-29T13:17:34.624761Z","id":"35e60881-d349-4bd1-b91e-f749267614b5","ip_address":"10.74.36.109","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:22:11.823417Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[{"created_at":"2023-07-03T18:26:56.134573Z","id":"b2f4d49b-3c0e-4e72-b217-a91edd241518","ip_address":"10.71.8.3","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:02:41.216125Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"}' headers: Content-Length: - - "1094" + - "1061" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:12 GMT + - Mon, 03 Jul 2023 20:02:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -867,7 +867,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 984a08ab-6cdd-4f36-93cd-92817f8a1464 + - fa738474-b9d8-4082-8c88-4797908d43d7 status: 200 OK code: 200 duration: "" @@ -878,19 +878,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/df121383-79ee-45da-854b-f99a3fef67ea + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/8093f9e6-14f6-4fe5-9290-4127979f9c11 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:22:10.442912Z","enable_http3":false,"id":"df121383-79ee-45da-854b-f99a3fef67ea","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"name":"tf-lb-frt-kind-bardeen","timeout_client":null,"updated_at":"2023-06-29T13:22:11.053373Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:02:39.846200Z","enable_http3":false,"id":"8093f9e6-14f6-4fe5-9290-4127979f9c11","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"name":"tf-lb-frt-naughty-einstein","timeout_client":null,"updated_at":"2023-07-03T20:02:40.411043Z"}' headers: Content-Length: - - "2911" + - "2830" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:12 GMT + - Mon, 03 Jul 2023 20:02:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -900,7 +900,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ec9db94-fd5d-420f-9e4a-1ed5bdfbcbe0 + - 5b7d56f5-0f74-4b65-bd25-50b0f2e521bd status: 200 OK code: 200 duration: "" @@ -911,19 +911,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/df121383-79ee-45da-854b-f99a3fef67ea/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/8093f9e6-14f6-4fe5-9290-4127979f9c11/acls?order_by=created_at_asc&page=1 method: GET response: - body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:22:11.475112Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:22:10.442912Z","enable_http3":false,"id":"df121383-79ee-45da-854b-f99a3fef67ea","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"name":"tf-lb-frt-kind-bardeen","timeout_client":null,"updated_at":"2023-06-29T13:22:11.053373Z"},"id":"e40aec03-5633-4f1b-8709-02ebd6a8bbc8","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1"]},"name":"tf-acl-datasource0","updated_at":"2023-06-29T13:22:11.475112Z"}],"total_count":1}' + body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:02:40.835068Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:02:39.846200Z","enable_http3":false,"id":"8093f9e6-14f6-4fe5-9290-4127979f9c11","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"name":"tf-lb-frt-naughty-einstein","timeout_client":null,"updated_at":"2023-07-03T20:02:40.411043Z"},"id":"a5d7ef2f-498a-4ca5-a30e-2ce5d967b16a","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1"]},"name":"tf-acl-datasource0","updated_at":"2023-07-03T20:02:40.835068Z"}],"total_count":1}' headers: Content-Length: - - "3330" + - "3235" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:12 GMT + - Mon, 03 Jul 2023 20:02:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -933,7 +933,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f54cc1ed-6fa6-463f-a18a-f9bee9b76f6c + - 685faf24-a08f-4f44-878d-68530769ba6b status: 200 OK code: 200 duration: "" @@ -944,19 +944,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c6b47cd5-7fca-4acc-bde4-e32e91f58310 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "321" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:13 GMT + - Mon, 03 Jul 2023 20:02:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -966,7 +966,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c934ce3-c5a3-4974-9e9b-510bea5de890 + - 0e489439-7b54-411a-9155-86760614ef20 status: 200 OK code: 200 duration: "" @@ -977,19 +977,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9770e9d9-98e7-4cc4-ba37-555b61b97a42 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/96075caf-1a73-4675-9d63-7a72a2334a40 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[{"created_at":"2023-06-29T13:17:34.624761Z","id":"35e60881-d349-4bd1-b91e-f749267614b5","ip_address":"10.74.36.109","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:22:11.823417Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[{"created_at":"2023-07-03T18:26:56.134573Z","id":"b2f4d49b-3c0e-4e72-b217-a91edd241518","ip_address":"10.71.8.3","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:02:41.216125Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"}' headers: Content-Length: - - "1094" + - "1061" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:13 GMT + - Mon, 03 Jul 2023 20:02:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -999,7 +999,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ed98a07-c691-4095-9de3-56bf20260c14 + - 1f0bdc90-116f-4dca-ad3e-d6d5dc76c6c0 status: 200 OK code: 200 duration: "" @@ -1010,19 +1010,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9770e9d9-98e7-4cc4-ba37-555b61b97a42 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/96075caf-1a73-4675-9d63-7a72a2334a40 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[{"created_at":"2023-06-29T13:17:34.624761Z","id":"35e60881-d349-4bd1-b91e-f749267614b5","ip_address":"10.74.36.109","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:22:11.823417Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[{"created_at":"2023-07-03T18:26:56.134573Z","id":"b2f4d49b-3c0e-4e72-b217-a91edd241518","ip_address":"10.71.8.3","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:02:41.216125Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"}' headers: Content-Length: - - "1094" + - "1061" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:13 GMT + - Mon, 03 Jul 2023 20:02:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1032,7 +1032,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8195052f-d57e-4677-a577-aacfcc7734fb + - 3faa4fd2-bb8f-4709-b2b5-7fe82482fe0d status: 200 OK code: 200 duration: "" @@ -1043,19 +1043,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9770e9d9-98e7-4cc4-ba37-555b61b97a42/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/96075caf-1a73-4675-9d63-7a72a2334a40/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:13 GMT + - Mon, 03 Jul 2023 20:02:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1065,7 +1065,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72e8914c-d4a8-46f4-9735-055eb367a0c4 + - ec796e3f-7ab5-4856-97d6-cbdd4248d6d9 status: 200 OK code: 200 duration: "" @@ -1076,19 +1076,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/d7b3fd70-e523-4016-a793-f2575575d3df method: GET response: - body: '{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[{"created_at":"2023-06-29T13:17:34.624761Z","id":"35e60881-d349-4bd1-b91e-f749267614b5","ip_address":"10.74.36.109","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:22:11.823417Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"}' + body: '{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[{"created_at":"2023-07-03T18:26:56.134573Z","id":"b2f4d49b-3c0e-4e72-b217-a91edd241518","ip_address":"10.71.8.3","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:02:41.216125Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"}' headers: Content-Length: - - "1959" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:13 GMT + - Mon, 03 Jul 2023 20:02:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1098,7 +1098,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d00a0cd3-e8e8-4af7-a226-40704f7b8f11 + - e44c072d-3038-481c-98aa-a1e72b48ec1f status: 200 OK code: 200 duration: "" @@ -1109,19 +1109,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9770e9d9-98e7-4cc4-ba37-555b61b97a42 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/96075caf-1a73-4675-9d63-7a72a2334a40 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[{"created_at":"2023-06-29T13:17:34.624761Z","id":"35e60881-d349-4bd1-b91e-f749267614b5","ip_address":"10.74.36.109","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:22:11.823417Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[{"created_at":"2023-07-03T18:26:56.134573Z","id":"b2f4d49b-3c0e-4e72-b217-a91edd241518","ip_address":"10.71.8.3","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:02:41.216125Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"}' headers: Content-Length: - - "1094" + - "1061" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:13 GMT + - Mon, 03 Jul 2023 20:02:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1131,7 +1131,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 848c487f-f538-4aa0-814e-74be67bab285 + - f82932d9-40af-420d-b64b-eae7b71a421b status: 200 OK code: 200 duration: "" @@ -1142,19 +1142,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/df121383-79ee-45da-854b-f99a3fef67ea + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/8093f9e6-14f6-4fe5-9290-4127979f9c11 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:22:10.442912Z","enable_http3":false,"id":"df121383-79ee-45da-854b-f99a3fef67ea","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"name":"tf-lb-frt-kind-bardeen","timeout_client":null,"updated_at":"2023-06-29T13:22:11.053373Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:02:39.846200Z","enable_http3":false,"id":"8093f9e6-14f6-4fe5-9290-4127979f9c11","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"name":"tf-lb-frt-naughty-einstein","timeout_client":null,"updated_at":"2023-07-03T20:02:40.411043Z"}' headers: Content-Length: - - "2911" + - "2830" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:13 GMT + - Mon, 03 Jul 2023 20:02:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1164,7 +1164,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63d649d9-564b-443e-a2e9-b4b6b82b98c7 + - b37a357a-9658-4169-a207-f83576c7af46 status: 200 OK code: 200 duration: "" @@ -1175,19 +1175,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/df121383-79ee-45da-854b-f99a3fef67ea/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/8093f9e6-14f6-4fe5-9290-4127979f9c11/acls?order_by=created_at_asc&page=1 method: GET response: - body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:22:11.475112Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:22:10.442912Z","enable_http3":false,"id":"df121383-79ee-45da-854b-f99a3fef67ea","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"name":"tf-lb-frt-kind-bardeen","timeout_client":null,"updated_at":"2023-06-29T13:22:11.053373Z"},"id":"e40aec03-5633-4f1b-8709-02ebd6a8bbc8","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1"]},"name":"tf-acl-datasource0","updated_at":"2023-06-29T13:22:11.475112Z"}],"total_count":1}' + body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:02:40.835068Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:02:39.846200Z","enable_http3":false,"id":"8093f9e6-14f6-4fe5-9290-4127979f9c11","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"name":"tf-lb-frt-naughty-einstein","timeout_client":null,"updated_at":"2023-07-03T20:02:40.411043Z"},"id":"a5d7ef2f-498a-4ca5-a30e-2ce5d967b16a","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1"]},"name":"tf-acl-datasource0","updated_at":"2023-07-03T20:02:40.835068Z"}],"total_count":1}' headers: Content-Length: - - "3330" + - "3235" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:13 GMT + - Mon, 03 Jul 2023 20:02:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1197,7 +1197,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 601dd291-bbc1-4b84-a8c0-a5a17787f79d + - 8058b433-686a-466d-ab78-6166321fcf07 status: 200 OK code: 200 duration: "" @@ -1208,19 +1208,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9770e9d9-98e7-4cc4-ba37-555b61b97a42 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/96075caf-1a73-4675-9d63-7a72a2334a40 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[{"created_at":"2023-06-29T13:17:34.624761Z","id":"35e60881-d349-4bd1-b91e-f749267614b5","ip_address":"10.74.36.109","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:22:11.823417Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[{"created_at":"2023-07-03T18:26:56.134573Z","id":"b2f4d49b-3c0e-4e72-b217-a91edd241518","ip_address":"10.71.8.3","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:02:41.216125Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"}' headers: Content-Length: - - "1094" + - "1061" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:14 GMT + - Mon, 03 Jul 2023 20:02:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1230,12 +1230,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81ce3c29-65ee-40a6-a8ce-3d5a1fde82dd + - 8427f007-c0d8-4a0a-8a56-d1f075d83a8a status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-frt-kind-bardeen","inbound_port":50000,"backend_id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","certificate_ids":null,"enable_http3":false,"timeout_client":null}' + body: '{"name":"tf-lb-frt-naughty-einstein","inbound_port":50000,"backend_id":"d7b3fd70-e523-4016-a793-f2575575d3df","certificate_ids":null,"enable_http3":false,"timeout_client":null}' form: {} headers: Content-Type: @@ -1243,19 +1243,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/df121383-79ee-45da-854b-f99a3fef67ea + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/8093f9e6-14f6-4fe5-9290-4127979f9c11 method: PUT response: - body: '{"backend":{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:22:10.442912Z","enable_http3":false,"id":"df121383-79ee-45da-854b-f99a3fef67ea","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[{"created_at":"2023-06-29T13:17:34.624761Z","id":"35e60881-d349-4bd1-b91e-f749267614b5","ip_address":"10.74.36.109","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:22:14.661746864Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"name":"tf-lb-frt-kind-bardeen","timeout_client":null,"updated_at":"2023-06-29T13:22:14.635691200Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:02:39.846200Z","enable_http3":false,"id":"8093f9e6-14f6-4fe5-9290-4127979f9c11","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[{"created_at":"2023-07-03T18:26:56.134573Z","id":"b2f4d49b-3c0e-4e72-b217-a91edd241518","ip_address":"10.71.8.3","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:02:44.658268430Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"name":"tf-lb-frt-naughty-einstein","timeout_client":null,"updated_at":"2023-07-03T20:02:44.630163047Z"}' headers: Content-Length: - - "3137" + - "3047" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:14 GMT + - Mon, 03 Jul 2023 20:02:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1265,7 +1265,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d484cd49-10fb-4c11-b757-37edcf17c799 + - f2098671-0fe3-42f9-9b86-68e0268bcb35 status: 200 OK code: 200 duration: "" @@ -1276,19 +1276,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/df121383-79ee-45da-854b-f99a3fef67ea/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/8093f9e6-14f6-4fe5-9290-4127979f9c11/acls?order_by=created_at_asc&page=1 method: GET response: - body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:22:11.475112Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:22:10.442912Z","enable_http3":false,"id":"df121383-79ee-45da-854b-f99a3fef67ea","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"name":"tf-lb-frt-kind-bardeen","timeout_client":null,"updated_at":"2023-06-29T13:22:14.635691Z"},"id":"e40aec03-5633-4f1b-8709-02ebd6a8bbc8","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1"]},"name":"tf-acl-datasource0","updated_at":"2023-06-29T13:22:11.475112Z"}],"total_count":1}' + body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:02:40.835068Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:02:39.846200Z","enable_http3":false,"id":"8093f9e6-14f6-4fe5-9290-4127979f9c11","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"name":"tf-lb-frt-naughty-einstein","timeout_client":null,"updated_at":"2023-07-03T20:02:44.630163Z"},"id":"a5d7ef2f-498a-4ca5-a30e-2ce5d967b16a","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1"]},"name":"tf-acl-datasource0","updated_at":"2023-07-03T20:02:40.835068Z"}],"total_count":1}' headers: Content-Length: - - "3330" + - "3235" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:15 GMT + - Mon, 03 Jul 2023 20:02:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1298,7 +1298,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af8fb7d3-e57d-46c5-892b-a1647d69264a + - f760f4f5-e4ce-4a68-88cb-cca61b89c55d status: 200 OK code: 200 duration: "" @@ -1311,19 +1311,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/df121383-79ee-45da-854b-f99a3fef67ea/acls + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/8093f9e6-14f6-4fe5-9290-4127979f9c11/acls method: POST response: - body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2023-06-29T13:22:15.257599674Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:22:10.442912Z","enable_http3":false,"id":"df121383-79ee-45da-854b-f99a3fef67ea","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"name":"tf-lb-frt-kind-bardeen","timeout_client":null,"updated_at":"2023-06-29T13:22:14.635691Z"},"id":"4df4daf3-1b8d-4b90-b8ba-4161df56d332","index":2,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-acl-datasource1","updated_at":"2023-06-29T13:22:15.257599674Z"}' + body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2023-07-03T20:02:45.113096203Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:02:39.846200Z","enable_http3":false,"id":"8093f9e6-14f6-4fe5-9290-4127979f9c11","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"name":"tf-lb-frt-naughty-einstein","timeout_client":null,"updated_at":"2023-07-03T20:02:44.630163Z"},"id":"d4b9a24c-cc41-4270-8e0c-dc43ce3899c9","index":2,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-acl-datasource1","updated_at":"2023-07-03T20:02:45.113096203Z"}' headers: Content-Length: - - "3306" + - "3212" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:15 GMT + - Mon, 03 Jul 2023 20:02:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1333,7 +1333,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82e63e32-ef7e-4993-bef1-2119825cd4e3 + - 83a12a30-599a-4a64-b999-f5ba5b52d087 status: 200 OK code: 200 duration: "" @@ -1344,19 +1344,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/df121383-79ee-45da-854b-f99a3fef67ea + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/8093f9e6-14f6-4fe5-9290-4127979f9c11 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:22:10.442912Z","enable_http3":false,"id":"df121383-79ee-45da-854b-f99a3fef67ea","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"name":"tf-lb-frt-kind-bardeen","timeout_client":null,"updated_at":"2023-06-29T13:22:14.635691Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:02:39.846200Z","enable_http3":false,"id":"8093f9e6-14f6-4fe5-9290-4127979f9c11","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"name":"tf-lb-frt-naughty-einstein","timeout_client":null,"updated_at":"2023-07-03T20:02:44.630163Z"}' headers: Content-Length: - - "2911" + - "2830" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:15 GMT + - Mon, 03 Jul 2023 20:02:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1366,7 +1366,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f561aa8c-e30f-452d-b073-93197915dd8c + - 067d19df-f54a-497f-b28e-45ce71711d6d status: 200 OK code: 200 duration: "" @@ -1377,17 +1377,17 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/df121383-79ee-45da-854b-f99a3fef67ea/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/8093f9e6-14f6-4fe5-9290-4127979f9c11/acls?order_by=created_at_asc&page=1 method: GET response: - body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:22:11.475112Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:22:10.442912Z","enable_http3":false,"id":"df121383-79ee-45da-854b-f99a3fef67ea","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"name":"tf-lb-frt-kind-bardeen","timeout_client":null,"updated_at":"2023-06-29T13:22:14.635691Z"},"id":"e40aec03-5633-4f1b-8709-02ebd6a8bbc8","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1"]},"name":"tf-acl-datasource0","updated_at":"2023-06-29T13:22:11.475112Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2023-06-29T13:22:15.257600Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:22:10.442912Z","enable_http3":false,"id":"df121383-79ee-45da-854b-f99a3fef67ea","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"name":"tf-lb-frt-kind-bardeen","timeout_client":null,"updated_at":"2023-06-29T13:22:14.635691Z"},"id":"4df4daf3-1b8d-4b90-b8ba-4161df56d332","index":2,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-acl-datasource1","updated_at":"2023-06-29T13:22:15.257600Z"}],"total_count":2}' + body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:02:40.835068Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:02:39.846200Z","enable_http3":false,"id":"8093f9e6-14f6-4fe5-9290-4127979f9c11","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"name":"tf-lb-frt-naughty-einstein","timeout_client":null,"updated_at":"2023-07-03T20:02:44.630163Z"},"id":"a5d7ef2f-498a-4ca5-a30e-2ce5d967b16a","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1"]},"name":"tf-acl-datasource0","updated_at":"2023-07-03T20:02:40.835068Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2023-07-03T20:02:45.113096Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:02:39.846200Z","enable_http3":false,"id":"8093f9e6-14f6-4fe5-9290-4127979f9c11","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"name":"tf-lb-frt-naughty-einstein","timeout_client":null,"updated_at":"2023-07-03T20:02:44.630163Z"},"id":"d4b9a24c-cc41-4270-8e0c-dc43ce3899c9","index":2,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-acl-datasource1","updated_at":"2023-07-03T20:02:45.113096Z"}],"total_count":2}' headers: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:15 GMT + - Mon, 03 Jul 2023 20:02:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1397,7 +1397,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78f6cdb3-c96f-4e32-b2de-932f49ebf896 + - c1e80f78-d21b-489f-98a0-610f5f479ec4 status: 200 OK code: 200 duration: "" @@ -1408,17 +1408,17 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/df121383-79ee-45da-854b-f99a3fef67ea/acls?name=tf-acl-datasource&order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/8093f9e6-14f6-4fe5-9290-4127979f9c11/acls?name=tf-acl-datasource&order_by=created_at_asc method: GET response: - body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:22:11.475112Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:22:10.442912Z","enable_http3":false,"id":"df121383-79ee-45da-854b-f99a3fef67ea","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"name":"tf-lb-frt-kind-bardeen","timeout_client":null,"updated_at":"2023-06-29T13:22:14.635691Z"},"id":"e40aec03-5633-4f1b-8709-02ebd6a8bbc8","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1"]},"name":"tf-acl-datasource0","updated_at":"2023-06-29T13:22:11.475112Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2023-06-29T13:22:15.257600Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:22:10.442912Z","enable_http3":false,"id":"df121383-79ee-45da-854b-f99a3fef67ea","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"name":"tf-lb-frt-kind-bardeen","timeout_client":null,"updated_at":"2023-06-29T13:22:14.635691Z"},"id":"4df4daf3-1b8d-4b90-b8ba-4161df56d332","index":2,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-acl-datasource1","updated_at":"2023-06-29T13:22:15.257600Z"}],"total_count":2}' + body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:02:40.835068Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:02:39.846200Z","enable_http3":false,"id":"8093f9e6-14f6-4fe5-9290-4127979f9c11","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"name":"tf-lb-frt-naughty-einstein","timeout_client":null,"updated_at":"2023-07-03T20:02:44.630163Z"},"id":"a5d7ef2f-498a-4ca5-a30e-2ce5d967b16a","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1"]},"name":"tf-acl-datasource0","updated_at":"2023-07-03T20:02:40.835068Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2023-07-03T20:02:45.113096Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:02:39.846200Z","enable_http3":false,"id":"8093f9e6-14f6-4fe5-9290-4127979f9c11","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"name":"tf-lb-frt-naughty-einstein","timeout_client":null,"updated_at":"2023-07-03T20:02:44.630163Z"},"id":"d4b9a24c-cc41-4270-8e0c-dc43ce3899c9","index":2,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-acl-datasource1","updated_at":"2023-07-03T20:02:45.113096Z"}],"total_count":2}' headers: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:15 GMT + - Mon, 03 Jul 2023 20:02:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1428,7 +1428,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64613538-856b-43a7-95ce-e72cc54599be + - 416c773d-8462-4903-97e0-0514db541233 status: 200 OK code: 200 duration: "" @@ -1439,17 +1439,17 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/df121383-79ee-45da-854b-f99a3fef67ea/acls?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/8093f9e6-14f6-4fe5-9290-4127979f9c11/acls?order_by=created_at_asc method: GET response: - body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:22:11.475112Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:22:10.442912Z","enable_http3":false,"id":"df121383-79ee-45da-854b-f99a3fef67ea","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"name":"tf-lb-frt-kind-bardeen","timeout_client":null,"updated_at":"2023-06-29T13:22:14.635691Z"},"id":"e40aec03-5633-4f1b-8709-02ebd6a8bbc8","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1"]},"name":"tf-acl-datasource0","updated_at":"2023-06-29T13:22:11.475112Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2023-06-29T13:22:15.257600Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:22:10.442912Z","enable_http3":false,"id":"df121383-79ee-45da-854b-f99a3fef67ea","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"name":"tf-lb-frt-kind-bardeen","timeout_client":null,"updated_at":"2023-06-29T13:22:14.635691Z"},"id":"4df4daf3-1b8d-4b90-b8ba-4161df56d332","index":2,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-acl-datasource1","updated_at":"2023-06-29T13:22:15.257600Z"}],"total_count":2}' + body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:02:40.835068Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:02:39.846200Z","enable_http3":false,"id":"8093f9e6-14f6-4fe5-9290-4127979f9c11","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"name":"tf-lb-frt-naughty-einstein","timeout_client":null,"updated_at":"2023-07-03T20:02:44.630163Z"},"id":"a5d7ef2f-498a-4ca5-a30e-2ce5d967b16a","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1"]},"name":"tf-acl-datasource0","updated_at":"2023-07-03T20:02:40.835068Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2023-07-03T20:02:45.113096Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:02:39.846200Z","enable_http3":false,"id":"8093f9e6-14f6-4fe5-9290-4127979f9c11","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"name":"tf-lb-frt-naughty-einstein","timeout_client":null,"updated_at":"2023-07-03T20:02:44.630163Z"},"id":"d4b9a24c-cc41-4270-8e0c-dc43ce3899c9","index":2,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-acl-datasource1","updated_at":"2023-07-03T20:02:45.113096Z"}],"total_count":2}' headers: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:15 GMT + - Mon, 03 Jul 2023 20:02:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1459,7 +1459,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 747f1d6f-d7ba-435d-860c-b2aedc08004a + - 2acbf2d5-e488-4d14-aabe-58db8d3898e6 status: 200 OK code: 200 duration: "" @@ -1470,17 +1470,17 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/df121383-79ee-45da-854b-f99a3fef67ea/acls?name=tf-acl-datasource&order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/8093f9e6-14f6-4fe5-9290-4127979f9c11/acls?order_by=created_at_asc method: GET response: - body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:22:11.475112Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:22:10.442912Z","enable_http3":false,"id":"df121383-79ee-45da-854b-f99a3fef67ea","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"name":"tf-lb-frt-kind-bardeen","timeout_client":null,"updated_at":"2023-06-29T13:22:14.635691Z"},"id":"e40aec03-5633-4f1b-8709-02ebd6a8bbc8","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1"]},"name":"tf-acl-datasource0","updated_at":"2023-06-29T13:22:11.475112Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2023-06-29T13:22:15.257600Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:22:10.442912Z","enable_http3":false,"id":"df121383-79ee-45da-854b-f99a3fef67ea","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"name":"tf-lb-frt-kind-bardeen","timeout_client":null,"updated_at":"2023-06-29T13:22:14.635691Z"},"id":"4df4daf3-1b8d-4b90-b8ba-4161df56d332","index":2,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-acl-datasource1","updated_at":"2023-06-29T13:22:15.257600Z"}],"total_count":2}' + body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:02:40.835068Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:02:39.846200Z","enable_http3":false,"id":"8093f9e6-14f6-4fe5-9290-4127979f9c11","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"name":"tf-lb-frt-naughty-einstein","timeout_client":null,"updated_at":"2023-07-03T20:02:44.630163Z"},"id":"a5d7ef2f-498a-4ca5-a30e-2ce5d967b16a","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1"]},"name":"tf-acl-datasource0","updated_at":"2023-07-03T20:02:40.835068Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2023-07-03T20:02:45.113096Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:02:39.846200Z","enable_http3":false,"id":"8093f9e6-14f6-4fe5-9290-4127979f9c11","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"name":"tf-lb-frt-naughty-einstein","timeout_client":null,"updated_at":"2023-07-03T20:02:44.630163Z"},"id":"d4b9a24c-cc41-4270-8e0c-dc43ce3899c9","index":2,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-acl-datasource1","updated_at":"2023-07-03T20:02:45.113096Z"}],"total_count":2}' headers: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:16 GMT + - Mon, 03 Jul 2023 20:02:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1490,7 +1490,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc7d3d68-53e0-4a14-904c-fec51be2679d + - 84974581-9257-4c02-8b55-5329ca92cceb status: 200 OK code: 200 duration: "" @@ -1501,17 +1501,17 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/df121383-79ee-45da-854b-f99a3fef67ea/acls?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/8093f9e6-14f6-4fe5-9290-4127979f9c11/acls?name=tf-acl-datasource&order_by=created_at_asc method: GET response: - body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:22:11.475112Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:22:10.442912Z","enable_http3":false,"id":"df121383-79ee-45da-854b-f99a3fef67ea","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"name":"tf-lb-frt-kind-bardeen","timeout_client":null,"updated_at":"2023-06-29T13:22:14.635691Z"},"id":"e40aec03-5633-4f1b-8709-02ebd6a8bbc8","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1"]},"name":"tf-acl-datasource0","updated_at":"2023-06-29T13:22:11.475112Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2023-06-29T13:22:15.257600Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:22:10.442912Z","enable_http3":false,"id":"df121383-79ee-45da-854b-f99a3fef67ea","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"name":"tf-lb-frt-kind-bardeen","timeout_client":null,"updated_at":"2023-06-29T13:22:14.635691Z"},"id":"4df4daf3-1b8d-4b90-b8ba-4161df56d332","index":2,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-acl-datasource1","updated_at":"2023-06-29T13:22:15.257600Z"}],"total_count":2}' + body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:02:40.835068Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:02:39.846200Z","enable_http3":false,"id":"8093f9e6-14f6-4fe5-9290-4127979f9c11","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"name":"tf-lb-frt-naughty-einstein","timeout_client":null,"updated_at":"2023-07-03T20:02:44.630163Z"},"id":"a5d7ef2f-498a-4ca5-a30e-2ce5d967b16a","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1"]},"name":"tf-acl-datasource0","updated_at":"2023-07-03T20:02:40.835068Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2023-07-03T20:02:45.113096Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:02:39.846200Z","enable_http3":false,"id":"8093f9e6-14f6-4fe5-9290-4127979f9c11","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"name":"tf-lb-frt-naughty-einstein","timeout_client":null,"updated_at":"2023-07-03T20:02:44.630163Z"},"id":"d4b9a24c-cc41-4270-8e0c-dc43ce3899c9","index":2,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-acl-datasource1","updated_at":"2023-07-03T20:02:45.113096Z"}],"total_count":2}' headers: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:16 GMT + - Mon, 03 Jul 2023 20:02:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1521,7 +1521,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f968b44-bc37-4d7f-a725-f8507b5fca79 + - f980d511-f08e-4798-8f38-ed51f367f9e9 status: 200 OK code: 200 duration: "" @@ -1532,19 +1532,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c6b47cd5-7fca-4acc-bde4-e32e91f58310 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "321" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:16 GMT + - Mon, 03 Jul 2023 20:02:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1554,7 +1554,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 181781d3-9c93-4165-a904-acb17a01e5c4 + - 3fc9fcc8-f636-4a65-a39c-9bc7a72579a6 status: 200 OK code: 200 duration: "" @@ -1565,19 +1565,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9770e9d9-98e7-4cc4-ba37-555b61b97a42 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/96075caf-1a73-4675-9d63-7a72a2334a40 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[{"created_at":"2023-06-29T13:17:34.624761Z","id":"35e60881-d349-4bd1-b91e-f749267614b5","ip_address":"10.74.36.109","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:22:15.620768Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[{"created_at":"2023-07-03T18:26:56.134573Z","id":"b2f4d49b-3c0e-4e72-b217-a91edd241518","ip_address":"10.71.8.3","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:02:45.437444Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"}' headers: Content-Length: - - "1094" + - "1061" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:16 GMT + - Mon, 03 Jul 2023 20:02:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1587,7 +1587,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 648aee3c-2fc3-4c7a-8479-53634641e461 + - 39a6b6cc-66da-408f-bc40-0a6715efe321 status: 200 OK code: 200 duration: "" @@ -1598,19 +1598,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9770e9d9-98e7-4cc4-ba37-555b61b97a42 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/96075caf-1a73-4675-9d63-7a72a2334a40 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[{"created_at":"2023-06-29T13:17:34.624761Z","id":"35e60881-d349-4bd1-b91e-f749267614b5","ip_address":"10.74.36.109","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:22:15.620768Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[{"created_at":"2023-07-03T18:26:56.134573Z","id":"b2f4d49b-3c0e-4e72-b217-a91edd241518","ip_address":"10.71.8.3","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:02:45.437444Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"}' headers: Content-Length: - - "1094" + - "1061" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:16 GMT + - Mon, 03 Jul 2023 20:02:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1620,7 +1620,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9062dfe7-3e75-4eb0-8105-147f90249366 + - 1593a7bb-a8cc-42fb-a18d-503c302d49da status: 200 OK code: 200 duration: "" @@ -1631,19 +1631,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9770e9d9-98e7-4cc4-ba37-555b61b97a42/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/96075caf-1a73-4675-9d63-7a72a2334a40/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:16 GMT + - Mon, 03 Jul 2023 20:02:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1653,7 +1653,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a66145a-f95b-4b57-9ce6-3afdfd92a491 + - ef1bcb8c-9725-4d42-b7d4-c33214449d68 status: 200 OK code: 200 duration: "" @@ -1664,19 +1664,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/d7b3fd70-e523-4016-a793-f2575575d3df method: GET response: - body: '{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[{"created_at":"2023-06-29T13:17:34.624761Z","id":"35e60881-d349-4bd1-b91e-f749267614b5","ip_address":"10.74.36.109","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:22:15.620768Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"}' + body: '{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[{"created_at":"2023-07-03T18:26:56.134573Z","id":"b2f4d49b-3c0e-4e72-b217-a91edd241518","ip_address":"10.71.8.3","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:02:45.437444Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"}' headers: Content-Length: - - "1959" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:16 GMT + - Mon, 03 Jul 2023 20:02:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1686,7 +1686,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da9b157b-0620-4342-9310-df4c7b7e7680 + - bef1cf97-fd9a-4ab2-9843-96338f01e579 status: 200 OK code: 200 duration: "" @@ -1697,19 +1697,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9770e9d9-98e7-4cc4-ba37-555b61b97a42 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/96075caf-1a73-4675-9d63-7a72a2334a40 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[{"created_at":"2023-06-29T13:17:34.624761Z","id":"35e60881-d349-4bd1-b91e-f749267614b5","ip_address":"10.74.36.109","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:22:15.620768Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[{"created_at":"2023-07-03T18:26:56.134573Z","id":"b2f4d49b-3c0e-4e72-b217-a91edd241518","ip_address":"10.71.8.3","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:02:45.437444Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"}' headers: Content-Length: - - "1094" + - "1061" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:16 GMT + - Mon, 03 Jul 2023 20:02:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1719,7 +1719,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 58cfbc0c-0eb2-49bb-b6eb-95044d829768 + - 0e3556ed-55d7-43ba-9c7c-6c000a2fb113 status: 200 OK code: 200 duration: "" @@ -1730,19 +1730,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/df121383-79ee-45da-854b-f99a3fef67ea + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/8093f9e6-14f6-4fe5-9290-4127979f9c11 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:22:10.442912Z","enable_http3":false,"id":"df121383-79ee-45da-854b-f99a3fef67ea","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"name":"tf-lb-frt-kind-bardeen","timeout_client":null,"updated_at":"2023-06-29T13:22:14.635691Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:02:39.846200Z","enable_http3":false,"id":"8093f9e6-14f6-4fe5-9290-4127979f9c11","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"name":"tf-lb-frt-naughty-einstein","timeout_client":null,"updated_at":"2023-07-03T20:02:44.630163Z"}' headers: Content-Length: - - "2911" + - "2830" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:17 GMT + - Mon, 03 Jul 2023 20:02:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1752,7 +1752,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf3f860d-d3ca-40c6-b1c3-d96508617138 + - 8b82fb87-fc55-4b8a-91e3-a527bcc1cf42 status: 200 OK code: 200 duration: "" @@ -1763,17 +1763,17 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/df121383-79ee-45da-854b-f99a3fef67ea/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/8093f9e6-14f6-4fe5-9290-4127979f9c11/acls?order_by=created_at_asc&page=1 method: GET response: - body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:22:11.475112Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:22:10.442912Z","enable_http3":false,"id":"df121383-79ee-45da-854b-f99a3fef67ea","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"name":"tf-lb-frt-kind-bardeen","timeout_client":null,"updated_at":"2023-06-29T13:22:14.635691Z"},"id":"e40aec03-5633-4f1b-8709-02ebd6a8bbc8","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1"]},"name":"tf-acl-datasource0","updated_at":"2023-06-29T13:22:11.475112Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2023-06-29T13:22:15.257600Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:22:10.442912Z","enable_http3":false,"id":"df121383-79ee-45da-854b-f99a3fef67ea","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"name":"tf-lb-frt-kind-bardeen","timeout_client":null,"updated_at":"2023-06-29T13:22:14.635691Z"},"id":"4df4daf3-1b8d-4b90-b8ba-4161df56d332","index":2,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-acl-datasource1","updated_at":"2023-06-29T13:22:15.257600Z"}],"total_count":2}' + body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:02:40.835068Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:02:39.846200Z","enable_http3":false,"id":"8093f9e6-14f6-4fe5-9290-4127979f9c11","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"name":"tf-lb-frt-naughty-einstein","timeout_client":null,"updated_at":"2023-07-03T20:02:44.630163Z"},"id":"a5d7ef2f-498a-4ca5-a30e-2ce5d967b16a","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1"]},"name":"tf-acl-datasource0","updated_at":"2023-07-03T20:02:40.835068Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2023-07-03T20:02:45.113096Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:02:39.846200Z","enable_http3":false,"id":"8093f9e6-14f6-4fe5-9290-4127979f9c11","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"name":"tf-lb-frt-naughty-einstein","timeout_client":null,"updated_at":"2023-07-03T20:02:44.630163Z"},"id":"d4b9a24c-cc41-4270-8e0c-dc43ce3899c9","index":2,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-acl-datasource1","updated_at":"2023-07-03T20:02:45.113096Z"}],"total_count":2}' headers: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:17 GMT + - Mon, 03 Jul 2023 20:02:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1783,7 +1783,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a3773ab-f720-4e4a-a642-88da3ae25093 + - f910afe1-22ba-458b-8fce-275a33653acd status: 200 OK code: 200 duration: "" @@ -1794,17 +1794,17 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/df121383-79ee-45da-854b-f99a3fef67ea/acls?name=tf-acl-datasource&order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/8093f9e6-14f6-4fe5-9290-4127979f9c11/acls?order_by=created_at_asc method: GET response: - body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:22:11.475112Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:22:10.442912Z","enable_http3":false,"id":"df121383-79ee-45da-854b-f99a3fef67ea","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"name":"tf-lb-frt-kind-bardeen","timeout_client":null,"updated_at":"2023-06-29T13:22:14.635691Z"},"id":"e40aec03-5633-4f1b-8709-02ebd6a8bbc8","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1"]},"name":"tf-acl-datasource0","updated_at":"2023-06-29T13:22:11.475112Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2023-06-29T13:22:15.257600Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:22:10.442912Z","enable_http3":false,"id":"df121383-79ee-45da-854b-f99a3fef67ea","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"name":"tf-lb-frt-kind-bardeen","timeout_client":null,"updated_at":"2023-06-29T13:22:14.635691Z"},"id":"4df4daf3-1b8d-4b90-b8ba-4161df56d332","index":2,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-acl-datasource1","updated_at":"2023-06-29T13:22:15.257600Z"}],"total_count":2}' + body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:02:40.835068Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:02:39.846200Z","enable_http3":false,"id":"8093f9e6-14f6-4fe5-9290-4127979f9c11","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"name":"tf-lb-frt-naughty-einstein","timeout_client":null,"updated_at":"2023-07-03T20:02:44.630163Z"},"id":"a5d7ef2f-498a-4ca5-a30e-2ce5d967b16a","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1"]},"name":"tf-acl-datasource0","updated_at":"2023-07-03T20:02:40.835068Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2023-07-03T20:02:45.113096Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:02:39.846200Z","enable_http3":false,"id":"8093f9e6-14f6-4fe5-9290-4127979f9c11","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"name":"tf-lb-frt-naughty-einstein","timeout_client":null,"updated_at":"2023-07-03T20:02:44.630163Z"},"id":"d4b9a24c-cc41-4270-8e0c-dc43ce3899c9","index":2,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-acl-datasource1","updated_at":"2023-07-03T20:02:45.113096Z"}],"total_count":2}' headers: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:17 GMT + - Mon, 03 Jul 2023 20:02:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1814,7 +1814,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 384ff654-dfb7-41c5-8350-7f2330cdf694 + - d9c76a89-7b12-41e5-8c0e-9e677dab1b96 status: 200 OK code: 200 duration: "" @@ -1825,17 +1825,17 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/df121383-79ee-45da-854b-f99a3fef67ea/acls?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/8093f9e6-14f6-4fe5-9290-4127979f9c11/acls?name=tf-acl-datasource&order_by=created_at_asc method: GET response: - body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:22:11.475112Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:22:10.442912Z","enable_http3":false,"id":"df121383-79ee-45da-854b-f99a3fef67ea","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"name":"tf-lb-frt-kind-bardeen","timeout_client":null,"updated_at":"2023-06-29T13:22:14.635691Z"},"id":"e40aec03-5633-4f1b-8709-02ebd6a8bbc8","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1"]},"name":"tf-acl-datasource0","updated_at":"2023-06-29T13:22:11.475112Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2023-06-29T13:22:15.257600Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:22:10.442912Z","enable_http3":false,"id":"df121383-79ee-45da-854b-f99a3fef67ea","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"name":"tf-lb-frt-kind-bardeen","timeout_client":null,"updated_at":"2023-06-29T13:22:14.635691Z"},"id":"4df4daf3-1b8d-4b90-b8ba-4161df56d332","index":2,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-acl-datasource1","updated_at":"2023-06-29T13:22:15.257600Z"}],"total_count":2}' + body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:02:40.835068Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:02:39.846200Z","enable_http3":false,"id":"8093f9e6-14f6-4fe5-9290-4127979f9c11","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"name":"tf-lb-frt-naughty-einstein","timeout_client":null,"updated_at":"2023-07-03T20:02:44.630163Z"},"id":"a5d7ef2f-498a-4ca5-a30e-2ce5d967b16a","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1"]},"name":"tf-acl-datasource0","updated_at":"2023-07-03T20:02:40.835068Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2023-07-03T20:02:45.113096Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:02:39.846200Z","enable_http3":false,"id":"8093f9e6-14f6-4fe5-9290-4127979f9c11","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"name":"tf-lb-frt-naughty-einstein","timeout_client":null,"updated_at":"2023-07-03T20:02:44.630163Z"},"id":"d4b9a24c-cc41-4270-8e0c-dc43ce3899c9","index":2,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-acl-datasource1","updated_at":"2023-07-03T20:02:45.113096Z"}],"total_count":2}' headers: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:17 GMT + - Mon, 03 Jul 2023 20:02:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1845,7 +1845,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc38c28a-697b-41c2-bdbd-640059df1558 + - 1d865ad7-2430-4c6e-b39f-a3e211a6362d status: 200 OK code: 200 duration: "" @@ -1856,17 +1856,17 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/df121383-79ee-45da-854b-f99a3fef67ea/acls?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/8093f9e6-14f6-4fe5-9290-4127979f9c11/acls?order_by=created_at_asc method: GET response: - body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:22:11.475112Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:22:10.442912Z","enable_http3":false,"id":"df121383-79ee-45da-854b-f99a3fef67ea","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"name":"tf-lb-frt-kind-bardeen","timeout_client":null,"updated_at":"2023-06-29T13:22:14.635691Z"},"id":"e40aec03-5633-4f1b-8709-02ebd6a8bbc8","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1"]},"name":"tf-acl-datasource0","updated_at":"2023-06-29T13:22:11.475112Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2023-06-29T13:22:15.257600Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:22:10.442912Z","enable_http3":false,"id":"df121383-79ee-45da-854b-f99a3fef67ea","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"name":"tf-lb-frt-kind-bardeen","timeout_client":null,"updated_at":"2023-06-29T13:22:14.635691Z"},"id":"4df4daf3-1b8d-4b90-b8ba-4161df56d332","index":2,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-acl-datasource1","updated_at":"2023-06-29T13:22:15.257600Z"}],"total_count":2}' + body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:02:40.835068Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:02:39.846200Z","enable_http3":false,"id":"8093f9e6-14f6-4fe5-9290-4127979f9c11","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"name":"tf-lb-frt-naughty-einstein","timeout_client":null,"updated_at":"2023-07-03T20:02:44.630163Z"},"id":"a5d7ef2f-498a-4ca5-a30e-2ce5d967b16a","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1"]},"name":"tf-acl-datasource0","updated_at":"2023-07-03T20:02:40.835068Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2023-07-03T20:02:45.113096Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:02:39.846200Z","enable_http3":false,"id":"8093f9e6-14f6-4fe5-9290-4127979f9c11","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"name":"tf-lb-frt-naughty-einstein","timeout_client":null,"updated_at":"2023-07-03T20:02:44.630163Z"},"id":"d4b9a24c-cc41-4270-8e0c-dc43ce3899c9","index":2,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-acl-datasource1","updated_at":"2023-07-03T20:02:45.113096Z"}],"total_count":2}' headers: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:17 GMT + - Mon, 03 Jul 2023 20:02:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1876,7 +1876,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03cc971a-3e38-452b-8e62-6206b67b97f5 + - cd2af648-43d4-46d9-99d7-968a84ea0910 status: 200 OK code: 200 duration: "" @@ -1887,17 +1887,17 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/df121383-79ee-45da-854b-f99a3fef67ea/acls?name=tf-acl-datasource&order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/8093f9e6-14f6-4fe5-9290-4127979f9c11/acls?name=tf-acl-datasource&order_by=created_at_asc method: GET response: - body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:22:11.475112Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:22:10.442912Z","enable_http3":false,"id":"df121383-79ee-45da-854b-f99a3fef67ea","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"name":"tf-lb-frt-kind-bardeen","timeout_client":null,"updated_at":"2023-06-29T13:22:14.635691Z"},"id":"e40aec03-5633-4f1b-8709-02ebd6a8bbc8","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1"]},"name":"tf-acl-datasource0","updated_at":"2023-06-29T13:22:11.475112Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2023-06-29T13:22:15.257600Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:22:09.721123Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-clever-bhaskara","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:22:09.721123Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:22:10.442912Z","enable_http3":false,"id":"df121383-79ee-45da-854b-f99a3fef67ea","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":1,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"},"name":"tf-lb-frt-kind-bardeen","timeout_client":null,"updated_at":"2023-06-29T13:22:14.635691Z"},"id":"4df4daf3-1b8d-4b90-b8ba-4161df56d332","index":2,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-acl-datasource1","updated_at":"2023-06-29T13:22:15.257600Z"}],"total_count":2}' + body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:02:40.835068Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:02:39.846200Z","enable_http3":false,"id":"8093f9e6-14f6-4fe5-9290-4127979f9c11","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"name":"tf-lb-frt-naughty-einstein","timeout_client":null,"updated_at":"2023-07-03T20:02:44.630163Z"},"id":"a5d7ef2f-498a-4ca5-a30e-2ce5d967b16a","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1"]},"name":"tf-acl-datasource0","updated_at":"2023-07-03T20:02:40.835068Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2023-07-03T20:02:45.113096Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:02:39.163118Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"d7b3fd70-e523-4016-a793-f2575575d3df","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-mahavira","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:02:39.163118Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:02:39.846200Z","enable_http3":false,"id":"8093f9e6-14f6-4fe5-9290-4127979f9c11","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":1,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"},"name":"tf-lb-frt-naughty-einstein","timeout_client":null,"updated_at":"2023-07-03T20:02:44.630163Z"},"id":"d4b9a24c-cc41-4270-8e0c-dc43ce3899c9","index":2,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-acl-datasource1","updated_at":"2023-07-03T20:02:45.113096Z"}],"total_count":2}' headers: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:17 GMT + - Mon, 03 Jul 2023 20:02:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1907,7 +1907,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c1200914-2a3f-4ed0-8c79-968c8e8b8d70 + - b83f4de1-79bb-48b5-be99-bb17c2574c53 status: 200 OK code: 200 duration: "" @@ -1918,7 +1918,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/df121383-79ee-45da-854b-f99a3fef67ea + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/8093f9e6-14f6-4fe5-9290-4127979f9c11 method: DELETE response: body: "" @@ -1928,7 +1928,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:18 GMT + - Mon, 03 Jul 2023 20:02:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1938,7 +1938,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52446ca3-8650-43d5-89be-18a3b693a190 + - 73630852-77a7-4770-9eea-f34a306ce825 status: 204 No Content code: 204 duration: "" @@ -1949,19 +1949,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9770e9d9-98e7-4cc4-ba37-555b61b97a42 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/96075caf-1a73-4675-9d63-7a72a2334a40 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":0,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[{"created_at":"2023-06-29T13:17:34.624761Z","id":"35e60881-d349-4bd1-b91e-f749267614b5","ip_address":"10.74.36.109","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:22:18.088246Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":0,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[{"created_at":"2023-07-03T18:26:56.134573Z","id":"b2f4d49b-3c0e-4e72-b217-a91edd241518","ip_address":"10.71.8.3","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:02:48.207700Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"}' headers: Content-Length: - - "1096" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:18 GMT + - Mon, 03 Jul 2023 20:02:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1971,7 +1971,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e378590b-e541-4379-a045-ba4ae9e9c5c6 + - a073e01d-afac-4aac-a664-b7eea54fbe24 status: 200 OK code: 200 duration: "" @@ -1982,19 +1982,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9770e9d9-98e7-4cc4-ba37-555b61b97a42 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/96075caf-1a73-4675-9d63-7a72a2334a40 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":0,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[{"created_at":"2023-06-29T13:17:34.624761Z","id":"35e60881-d349-4bd1-b91e-f749267614b5","ip_address":"10.74.36.109","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:22:18.088246Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":0,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[{"created_at":"2023-07-03T18:26:56.134573Z","id":"b2f4d49b-3c0e-4e72-b217-a91edd241518","ip_address":"10.71.8.3","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:02:48.428437Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"}' headers: Content-Length: - - "1096" + - "1061" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:18 GMT + - Mon, 03 Jul 2023 20:02:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2004,7 +2004,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9f23aeb-b02b-483f-8864-abe1217686dc + - ff10d077-eb3c-4814-b933-c981788a9c7d status: 200 OK code: 200 duration: "" @@ -2015,7 +2015,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/750b32dc-3c95-4fe0-8e1d-a3fd11fc6e2c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/d7b3fd70-e523-4016-a793-f2575575d3df method: DELETE response: body: "" @@ -2025,7 +2025,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:18 GMT + - Mon, 03 Jul 2023 20:02:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2035,7 +2035,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 062692eb-c35e-4cca-ab8a-a160e62577ce + - ad8a9a9c-4dd8-4db4-8b9a-be7d1136b92f status: 204 No Content code: 204 duration: "" @@ -2046,19 +2046,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9770e9d9-98e7-4cc4-ba37-555b61b97a42 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/96075caf-1a73-4675-9d63-7a72a2334a40 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":0,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[{"created_at":"2023-06-29T13:17:34.624761Z","id":"35e60881-d349-4bd1-b91e-f749267614b5","ip_address":"10.74.36.109","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:22:18.500555Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":0,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[{"created_at":"2023-07-03T18:26:56.134573Z","id":"b2f4d49b-3c0e-4e72-b217-a91edd241518","ip_address":"10.71.8.3","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:02:48.622368Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"}' headers: Content-Length: - - "1096" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:18 GMT + - Mon, 03 Jul 2023 20:02:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2068,7 +2068,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2096836d-9c74-4126-9df9-8e9ae67131f3 + - 6dc01d87-1c79-4d4f-88dd-3fa26d93440c status: 200 OK code: 200 duration: "" @@ -2079,19 +2079,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9770e9d9-98e7-4cc4-ba37-555b61b97a42 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/96075caf-1a73-4675-9d63-7a72a2334a40 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":0,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[{"created_at":"2023-06-29T13:17:34.624761Z","id":"35e60881-d349-4bd1-b91e-f749267614b5","ip_address":"10.74.36.109","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:22:18.500555Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:21:41.296495Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":0,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[{"created_at":"2023-07-03T18:26:56.134573Z","id":"b2f4d49b-3c0e-4e72-b217-a91edd241518","ip_address":"10.71.8.3","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:02:48.839823Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:10.500867Z","zone":"fr-par-1"}' headers: Content-Length: - - "1096" + - "1061" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:18 GMT + - Mon, 03 Jul 2023 20:02:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2101,7 +2101,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a515a0e8-e813-482b-8d8a-d9ca9d17bf6e + - ced601b7-6704-4cea-a1c1-42ce010815e5 status: 200 OK code: 200 duration: "" @@ -2112,7 +2112,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9770e9d9-98e7-4cc4-ba37-555b61b97a42?release_ip=false + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/96075caf-1a73-4675-9d63-7a72a2334a40?release_ip=false method: DELETE response: body: "" @@ -2122,7 +2122,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:19 GMT + - Mon, 03 Jul 2023 20:02:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2132,7 +2132,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e50f5b48-2989-4c67-baa4-aa4a4a38b8c6 + - a0266849-1167-4471-b3d9-6670791e91bf status: 204 No Content code: 204 duration: "" @@ -2143,19 +2143,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9770e9d9-98e7-4cc4-ba37-555b61b97a42 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/96075caf-1a73-4675-9d63-7a72a2334a40 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:21:39.042946Z","description":"","frontend_count":0,"id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","instances":[{"created_at":"2023-06-29T13:17:34.624761Z","id":"35e60881-d349-4bd1-b91e-f749267614b5","ip_address":"10.74.36.109","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:22:18.748340Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"9770e9d9-98e7-4cc4-ba37-555b61b97a42","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:22:18.855428Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:02:08.454778Z","description":"","frontend_count":0,"id":"96075caf-1a73-4675-9d63-7a72a2334a40","instances":[{"created_at":"2023-07-03T18:26:56.134573Z","id":"b2f4d49b-3c0e-4e72-b217-a91edd241518","ip_address":"10.71.8.3","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:02:48.839823Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"96075caf-1a73-4675-9d63-7a72a2334a40","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:02:49.020972Z","zone":"fr-par-1"}' headers: Content-Length: - - "1098" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:19 GMT + - Mon, 03 Jul 2023 20:02:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2165,7 +2165,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7242f8cf-1676-4372-bdcb-1eef2d4f86d0 + - 60e1106f-fdf5-4772-98e4-ebd1d29c5135 status: 200 OK code: 200 duration: "" @@ -2176,7 +2176,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9770e9d9-98e7-4cc4-ba37-555b61b97a42 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/96075caf-1a73-4675-9d63-7a72a2334a40 method: GET response: body: '{"message":"lbs not Found"}' @@ -2188,7 +2188,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:49 GMT + - Mon, 03 Jul 2023 20:03:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2198,7 +2198,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad3d75d3-4296-42bd-86ed-3ba1f5ee84fd + - 34bf641a-bc8e-456c-9761-7461765d793a status: 404 Not Found code: 404 duration: "" @@ -2209,7 +2209,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9770e9d9-98e7-4cc4-ba37-555b61b97a42 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/96075caf-1a73-4675-9d63-7a72a2334a40 method: GET response: body: '{"message":"lbs not Found"}' @@ -2221,7 +2221,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:49 GMT + - Mon, 03 Jul 2023 20:03:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2231,7 +2231,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 136ddf05-927a-497f-be5b-1dd10bb2d0ab + - 429e1236-3bf0-4c72-ae97-80699c68cb3f status: 404 Not Found code: 404 duration: "" @@ -2242,19 +2242,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c6b47cd5-7fca-4acc-bde4-e32e91f58310 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "287" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:49 GMT + - Mon, 03 Jul 2023 20:03:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2264,7 +2264,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c1b72c4e-7e19-4c7f-a1f1-af0d2aa936e8 + - f9b80a1a-2156-4649-9b30-0adb30952ddc status: 200 OK code: 200 duration: "" @@ -2275,7 +2275,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c6b47cd5-7fca-4acc-bde4-e32e91f58310 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: DELETE response: body: "" @@ -2285,7 +2285,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:49 GMT + - Mon, 03 Jul 2023 20:03:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2295,7 +2295,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0e30a99-7d0f-4541-b7bb-bd545b4a1f2a + - be307300-71b7-44fd-a35b-1292968b8127 status: 204 No Content code: 204 duration: "" @@ -2306,7 +2306,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/9770e9d9-98e7-4cc4-ba37-555b61b97a42 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/96075caf-1a73-4675-9d63-7a72a2334a40 method: GET response: body: '{"message":"lbs not Found"}' @@ -2318,7 +2318,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:49 GMT + - Mon, 03 Jul 2023 20:03:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2328,7 +2328,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 172ad73c-c216-4250-b06b-a5b365f0402d + - db53a630-5a75-4cf6-9b48-19e787f7ad66 status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/data-source-lb-backend-basic.cassette.yaml b/scaleway/testdata/data-source-lb-backend-basic.cassette.yaml index 0cbdd7ba88..9bd7072a0b 100644 --- a/scaleway/testdata/data-source-lb-backend-basic.cassette.yaml +++ b/scaleway/testdata/data-source-lb-backend-basic.cassette.yaml @@ -13,16 +13,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips method: POST response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "285" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:59 GMT + - Mon, 03 Jul 2023 20:20:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -32,7 +32,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cbf0bd6d-e8ba-4653-b801-c8cbdc3c1374 + - c22e884d-0282-4bca-afc4-ce85fea09e3f status: 200 OK code: 200 duration: "" @@ -43,19 +43,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "285" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:59 GMT + - Mon, 03 Jul 2023 20:20:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -65,12 +65,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec3da58d-84eb-403e-8675-18bec513596b + - ac670a28-2ae4-4cd6-a4e8-9b3dac4649f9 status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"data-test-lb-backend","description":"","ip_id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","assign_flexible_ip":null,"tags":null,"type":"LB-S","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"data-test-lb-backend","description":"","ip_id":"86df9ff8-7a77-492d-9b03-4f6205127499","assign_flexible_ip":null,"tags":null,"type":"LB-S","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' form: {} headers: Content-Type: @@ -81,16 +81,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs method: POST response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:39:59.753735165Z","description":"","frontend_count":0,"id":"132c647f-dac4-43b4-9879-246eafbc3b7d","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"132c647f-dac4-43b4-9879-246eafbc3b7d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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":"2023-06-29T13:39:59.753735165Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:20:57.651633959Z","description":"","frontend_count":0,"id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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":"2023-07-03T20:20:57.651633959Z","zone":"fr-par-1"}' headers: Content-Length: - - "897" + - "875" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:59 GMT + - Mon, 03 Jul 2023 20:20:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -100,7 +100,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 307d1e6a-64ea-4634-9e36-66c902d25358 + - 46753326-2675-4511-8fb8-f94abadb7572 status: 200 OK code: 200 duration: "" @@ -111,19 +111,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/132c647f-dac4-43b4-9879-246eafbc3b7d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8e92106b-b7a0-4aa2-83c4-eba0fc2767ca method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:39:59.753735Z","description":"","frontend_count":0,"id":"132c647f-dac4-43b4-9879-246eafbc3b7d","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"132c647f-dac4-43b4-9879-246eafbc3b7d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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":"2023-06-29T13:39:59.753735Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:20:57.651634Z","description":"","frontend_count":0,"id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","instances":[{"created_at":"2023-07-03T20:19:54.699720Z","id":"5130d74e-354f-4ea1-addc-b9a6414c3011","ip_address":"10.76.70.87","region":"fr-par","status":"unknown","updated_at":"2023-07-03T20:20:57.849249Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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":"2023-07-03T20:20:57.651634Z","zone":"fr-par-1"}' headers: Content-Length: - - "891" + - "1082" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:59 GMT + - Mon, 03 Jul 2023 20:20:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -133,7 +133,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9778b8e8-c7e2-4c64-93bc-3fa9e3d1cdaa + - 7cbfb6df-ddd6-4d4d-9daf-bb980377a61e status: 200 OK code: 200 duration: "" @@ -144,19 +144,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/132c647f-dac4-43b4-9879-246eafbc3b7d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8e92106b-b7a0-4aa2-83c4-eba0fc2767ca method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:39:59.753735Z","description":"","frontend_count":0,"id":"132c647f-dac4-43b4-9879-246eafbc3b7d","instances":[{"created_at":"2023-06-29T13:37:04.774634Z","id":"bdab664c-eff3-41c6-acf0-4e03d0c452ed","ip_address":"10.68.152.43","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:40:01.176744Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"132c647f-dac4-43b4-9879-246eafbc3b7d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:40:02.545836Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:20:57.651634Z","description":"","frontend_count":0,"id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","instances":[{"created_at":"2023-07-03T20:19:54.699720Z","id":"5130d74e-354f-4ea1-addc-b9a6414c3011","ip_address":"10.76.70.87","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:20:58.804762Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:20:59.847522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1105" + - "1076" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:30 GMT + - Mon, 03 Jul 2023 20:21:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -166,7 +166,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7125eedc-6489-457d-854e-f7094b44e182 + - f319c024-887c-4ea4-b093-48d180b4b74b status: 200 OK code: 200 duration: "" @@ -177,19 +177,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/132c647f-dac4-43b4-9879-246eafbc3b7d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8e92106b-b7a0-4aa2-83c4-eba0fc2767ca method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:39:59.753735Z","description":"","frontend_count":0,"id":"132c647f-dac4-43b4-9879-246eafbc3b7d","instances":[{"created_at":"2023-06-29T13:37:04.774634Z","id":"bdab664c-eff3-41c6-acf0-4e03d0c452ed","ip_address":"10.68.152.43","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:40:01.176744Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"132c647f-dac4-43b4-9879-246eafbc3b7d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:40:02.545836Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:20:57.651634Z","description":"","frontend_count":0,"id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","instances":[{"created_at":"2023-07-03T20:19:54.699720Z","id":"5130d74e-354f-4ea1-addc-b9a6414c3011","ip_address":"10.76.70.87","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:20:58.804762Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:20:59.847522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1105" + - "1076" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:30 GMT + - Mon, 03 Jul 2023 20:21:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -199,7 +199,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f42aacbf-c5fd-47f7-a276-0728da5e3e44 + - 519920e0-69f9-493f-aed5-498dfffabcaa status: 200 OK code: 200 duration: "" @@ -210,19 +210,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/132c647f-dac4-43b4-9879-246eafbc3b7d/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8e92106b-b7a0-4aa2-83c4-eba0fc2767ca/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:30 GMT + - Mon, 03 Jul 2023 20:21:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -232,7 +232,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1413a3e-14dc-4d5b-b8be-be47213bceb2 + - 8c777102-f327-4fd5-b1f1-39343d5280b2 status: 200 OK code: 200 duration: "" @@ -243,19 +243,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/132c647f-dac4-43b4-9879-246eafbc3b7d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8e92106b-b7a0-4aa2-83c4-eba0fc2767ca method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:39:59.753735Z","description":"","frontend_count":0,"id":"132c647f-dac4-43b4-9879-246eafbc3b7d","instances":[{"created_at":"2023-06-29T13:37:04.774634Z","id":"bdab664c-eff3-41c6-acf0-4e03d0c452ed","ip_address":"10.68.152.43","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:40:01.176744Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"132c647f-dac4-43b4-9879-246eafbc3b7d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:40:02.545836Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:20:57.651634Z","description":"","frontend_count":0,"id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","instances":[{"created_at":"2023-07-03T20:19:54.699720Z","id":"5130d74e-354f-4ea1-addc-b9a6414c3011","ip_address":"10.76.70.87","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:20:58.804762Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:20:59.847522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1105" + - "1076" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:30 GMT + - Mon, 03 Jul 2023 20:21:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -265,12 +265,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eed419e2-1b7d-4bf5-ba62-e17f6ce37997 + - fe489683-5ee9-4509-ab23-910cb4fc4d56 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"backend01","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_max_retries":2,"check_send_proxy":false,"transient_check_delay":null,"check_delay":60000,"check_timeout":30000},"server_ip":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":null,"max_retries":3,"max_connections":null,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' + body: '{"name":"backend01","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_max_retries":2,"check_send_proxy":false,"transient_check_delay":"0.500000000s","check_delay":60000,"check_timeout":30000},"server_ip":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":null,"max_retries":3,"max_connections":null,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' form: {} headers: Content-Type: @@ -278,19 +278,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/132c647f-dac4-43b4-9879-246eafbc3b7d/backends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8e92106b-b7a0-4aa2-83c4-eba0fc2767ca/backends method: POST response: - body: '{"created_at":"2023-06-29T13:40:30.402149560Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"d11c5a46-cf6d-43c4-ad21-1b4389c174bd","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:39:59.753735Z","description":"","frontend_count":0,"id":"132c647f-dac4-43b4-9879-246eafbc3b7d","instances":[{"created_at":"2023-06-29T13:37:04.774634Z","id":"bdab664c-eff3-41c6-acf0-4e03d0c452ed","ip_address":"10.68.152.43","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:40:30.435702041Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"132c647f-dac4-43b4-9879-246eafbc3b7d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:40:02.545836Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"backend01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:40:30.402149560Z"}' + body: '{"created_at":"2023-07-03T20:21:28.362947446Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8142c8d3-7e08-4525-ba61-615644f84da2","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:20:57.651634Z","description":"","frontend_count":0,"id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","instances":[{"created_at":"2023-07-03T20:19:54.699720Z","id":"5130d74e-354f-4ea1-addc-b9a6414c3011","ip_address":"10.76.70.87","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:21:28.401762961Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:20:59.847522Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"backend01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:21:28.362947446Z"}' headers: Content-Length: - - "1965" + - "1910" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:30 GMT + - Mon, 03 Jul 2023 20:21:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -300,7 +300,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20b4221c-655b-4948-ae15-923e469d10b0 + - 65daa78e-9b24-4e6d-9771-7840449293aa status: 200 OK code: 200 duration: "" @@ -311,19 +311,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/132c647f-dac4-43b4-9879-246eafbc3b7d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8e92106b-b7a0-4aa2-83c4-eba0fc2767ca method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:39:59.753735Z","description":"","frontend_count":0,"id":"132c647f-dac4-43b4-9879-246eafbc3b7d","instances":[{"created_at":"2023-06-29T13:37:04.774634Z","id":"bdab664c-eff3-41c6-acf0-4e03d0c452ed","ip_address":"10.68.152.43","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:40:30.435702Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"132c647f-dac4-43b4-9879-246eafbc3b7d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:40:02.545836Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:20:57.651634Z","description":"","frontend_count":0,"id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","instances":[{"created_at":"2023-07-03T20:19:54.699720Z","id":"5130d74e-354f-4ea1-addc-b9a6414c3011","ip_address":"10.76.70.87","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:21:28.401763Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:20:59.847522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1107" + - "1078" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:30 GMT + - Mon, 03 Jul 2023 20:21:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -333,7 +333,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b4e17bb3-4d7b-4016-a9e1-b51dd103f720 + - 319b8af7-618a-40b5-8337-1142274ff901 status: 200 OK code: 200 duration: "" @@ -344,19 +344,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/d11c5a46-cf6d-43c4-ad21-1b4389c174bd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/8142c8d3-7e08-4525-ba61-615644f84da2 method: GET response: - body: '{"created_at":"2023-06-29T13:40:30.402150Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"d11c5a46-cf6d-43c4-ad21-1b4389c174bd","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:39:59.753735Z","description":"","frontend_count":0,"id":"132c647f-dac4-43b4-9879-246eafbc3b7d","instances":[{"created_at":"2023-06-29T13:37:04.774634Z","id":"bdab664c-eff3-41c6-acf0-4e03d0c452ed","ip_address":"10.68.152.43","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:40:30.435702Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"132c647f-dac4-43b4-9879-246eafbc3b7d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:40:02.545836Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"backend01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:40:30.402150Z"}' + body: '{"created_at":"2023-07-03T20:21:28.362947Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8142c8d3-7e08-4525-ba61-615644f84da2","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:20:57.651634Z","description":"","frontend_count":0,"id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","instances":[{"created_at":"2023-07-03T20:19:54.699720Z","id":"5130d74e-354f-4ea1-addc-b9a6414c3011","ip_address":"10.76.70.87","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:21:28.401763Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:20:59.847522Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"backend01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:21:28.362947Z"}' headers: Content-Length: - - "1956" + - "1901" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:30 GMT + - Mon, 03 Jul 2023 20:21:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -366,7 +366,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2c3dfc5-1627-4db7-a2d1-36563913313a + - 857df21a-bfda-4842-bf4c-c12a33acc1a3 status: 200 OK code: 200 duration: "" @@ -377,19 +377,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/132c647f-dac4-43b4-9879-246eafbc3b7d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8e92106b-b7a0-4aa2-83c4-eba0fc2767ca method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:39:59.753735Z","description":"","frontend_count":0,"id":"132c647f-dac4-43b4-9879-246eafbc3b7d","instances":[{"created_at":"2023-06-29T13:37:04.774634Z","id":"bdab664c-eff3-41c6-acf0-4e03d0c452ed","ip_address":"10.68.152.43","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:40:30.729289Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"132c647f-dac4-43b4-9879-246eafbc3b7d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:40:02.545836Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:20:57.651634Z","description":"","frontend_count":0,"id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","instances":[{"created_at":"2023-07-03T20:19:54.699720Z","id":"5130d74e-354f-4ea1-addc-b9a6414c3011","ip_address":"10.76.70.87","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:21:28.629979Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:20:59.847522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1105" + - "1076" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:30 GMT + - Mon, 03 Jul 2023 20:21:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -399,7 +399,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81d909c3-2b8d-4805-9e2e-7ff297548188 + - d10c1529-6175-4298-b5de-5c4a1031928a status: 200 OK code: 200 duration: "" @@ -410,19 +410,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/d11c5a46-cf6d-43c4-ad21-1b4389c174bd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/8142c8d3-7e08-4525-ba61-615644f84da2 method: GET response: - body: '{"created_at":"2023-06-29T13:40:30.402150Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"d11c5a46-cf6d-43c4-ad21-1b4389c174bd","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:39:59.753735Z","description":"","frontend_count":0,"id":"132c647f-dac4-43b4-9879-246eafbc3b7d","instances":[{"created_at":"2023-06-29T13:37:04.774634Z","id":"bdab664c-eff3-41c6-acf0-4e03d0c452ed","ip_address":"10.68.152.43","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:40:30.729289Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"132c647f-dac4-43b4-9879-246eafbc3b7d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:40:02.545836Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"backend01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:40:30.402150Z"}' + body: '{"created_at":"2023-07-03T20:21:28.362947Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8142c8d3-7e08-4525-ba61-615644f84da2","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:20:57.651634Z","description":"","frontend_count":0,"id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","instances":[{"created_at":"2023-07-03T20:19:54.699720Z","id":"5130d74e-354f-4ea1-addc-b9a6414c3011","ip_address":"10.76.70.87","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:21:28.629979Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:20:59.847522Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"backend01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:21:28.362947Z"}' headers: Content-Length: - - "1954" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:30 GMT + - Mon, 03 Jul 2023 20:21:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -432,7 +432,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46b563d9-8466-4161-b521-4877ad5b4ccd + - 32a1df11-c4fd-4576-9a19-e3a13956a2ba status: 200 OK code: 200 duration: "" @@ -443,19 +443,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/132c647f-dac4-43b4-9879-246eafbc3b7d/backends?name=backend01&order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8e92106b-b7a0-4aa2-83c4-eba0fc2767ca/backends?name=backend01&order_by=created_at_asc method: GET response: - body: '{"backends":[{"created_at":"2023-06-29T13:40:30.402150Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"d11c5a46-cf6d-43c4-ad21-1b4389c174bd","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"backend01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:40:30.402150Z"}],"total_count":1}' + body: '{"backends":[{"created_at":"2023-07-03T20:21:28.362947Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8142c8d3-7e08-4525-ba61-615644f84da2","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"backend01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:21:28.362947Z"}],"total_count":1}' headers: Content-Length: - - "1302" + - "1256" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:30 GMT + - Mon, 03 Jul 2023 20:21:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -465,7 +465,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90ea8fc9-6788-4f0b-bd6d-ed328b594989 + - 57eb0728-ae21-4f31-8dfd-49f17da45058 status: 200 OK code: 200 duration: "" @@ -476,19 +476,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/132c647f-dac4-43b4-9879-246eafbc3b7d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8e92106b-b7a0-4aa2-83c4-eba0fc2767ca method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:39:59.753735Z","description":"","frontend_count":0,"id":"132c647f-dac4-43b4-9879-246eafbc3b7d","instances":[{"created_at":"2023-06-29T13:37:04.774634Z","id":"bdab664c-eff3-41c6-acf0-4e03d0c452ed","ip_address":"10.68.152.43","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:40:30.729289Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"132c647f-dac4-43b4-9879-246eafbc3b7d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:40:02.545836Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:20:57.651634Z","description":"","frontend_count":0,"id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","instances":[{"created_at":"2023-07-03T20:19:54.699720Z","id":"5130d74e-354f-4ea1-addc-b9a6414c3011","ip_address":"10.76.70.87","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:21:28.629979Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:20:59.847522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1105" + - "1076" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:30 GMT + - Mon, 03 Jul 2023 20:21:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -498,7 +498,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 475e7acf-42aa-4c1e-be52-6895f4bf0744 + - 4fb06166-c75d-453a-8173-534448dd25ed status: 200 OK code: 200 duration: "" @@ -509,19 +509,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/d11c5a46-cf6d-43c4-ad21-1b4389c174bd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/8142c8d3-7e08-4525-ba61-615644f84da2 method: GET response: - body: '{"created_at":"2023-06-29T13:40:30.402150Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"d11c5a46-cf6d-43c4-ad21-1b4389c174bd","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:39:59.753735Z","description":"","frontend_count":0,"id":"132c647f-dac4-43b4-9879-246eafbc3b7d","instances":[{"created_at":"2023-06-29T13:37:04.774634Z","id":"bdab664c-eff3-41c6-acf0-4e03d0c452ed","ip_address":"10.68.152.43","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:40:30.729289Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"132c647f-dac4-43b4-9879-246eafbc3b7d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:40:02.545836Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"backend01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:40:30.402150Z"}' + body: '{"created_at":"2023-07-03T20:21:28.362947Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8142c8d3-7e08-4525-ba61-615644f84da2","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:20:57.651634Z","description":"","frontend_count":0,"id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","instances":[{"created_at":"2023-07-03T20:19:54.699720Z","id":"5130d74e-354f-4ea1-addc-b9a6414c3011","ip_address":"10.76.70.87","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:21:28.629979Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:20:59.847522Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"backend01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:21:28.362947Z"}' headers: Content-Length: - - "1954" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:30 GMT + - Mon, 03 Jul 2023 20:21:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -531,7 +531,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ff64122-1c80-4d86-84be-4f3f35a31c4b + - 0aa87814-d373-4279-b7f1-0065349e7d89 status: 200 OK code: 200 duration: "" @@ -542,19 +542,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/132c647f-dac4-43b4-9879-246eafbc3b7d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8e92106b-b7a0-4aa2-83c4-eba0fc2767ca method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:39:59.753735Z","description":"","frontend_count":0,"id":"132c647f-dac4-43b4-9879-246eafbc3b7d","instances":[{"created_at":"2023-06-29T13:37:04.774634Z","id":"bdab664c-eff3-41c6-acf0-4e03d0c452ed","ip_address":"10.68.152.43","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:40:30.729289Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"132c647f-dac4-43b4-9879-246eafbc3b7d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:40:02.545836Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:20:57.651634Z","description":"","frontend_count":0,"id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","instances":[{"created_at":"2023-07-03T20:19:54.699720Z","id":"5130d74e-354f-4ea1-addc-b9a6414c3011","ip_address":"10.76.70.87","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:21:28.629979Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:20:59.847522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1105" + - "1076" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:31 GMT + - Mon, 03 Jul 2023 20:21:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -564,7 +564,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f72d159c-0260-4daf-854a-7075303064e6 + - 80985f1d-2870-4e16-94ff-9496b5c68d3c status: 200 OK code: 200 duration: "" @@ -575,19 +575,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/132c647f-dac4-43b4-9879-246eafbc3b7d/backends?name=backend01&order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8e92106b-b7a0-4aa2-83c4-eba0fc2767ca/backends?name=backend01&order_by=created_at_asc method: GET response: - body: '{"backends":[{"created_at":"2023-06-29T13:40:30.402150Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"d11c5a46-cf6d-43c4-ad21-1b4389c174bd","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"backend01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:40:30.402150Z"}],"total_count":1}' + body: '{"backends":[{"created_at":"2023-07-03T20:21:28.362947Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8142c8d3-7e08-4525-ba61-615644f84da2","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"backend01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:21:28.362947Z"}],"total_count":1}' headers: Content-Length: - - "1302" + - "1256" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:31 GMT + - Mon, 03 Jul 2023 20:21:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -597,7 +597,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 834c26db-b53e-48e7-816a-23af4493b602 + - fac049e3-f30e-4879-8c7e-04aae1ee0908 status: 200 OK code: 200 duration: "" @@ -608,19 +608,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/d11c5a46-cf6d-43c4-ad21-1b4389c174bd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/8142c8d3-7e08-4525-ba61-615644f84da2 method: GET response: - body: '{"created_at":"2023-06-29T13:40:30.402150Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"d11c5a46-cf6d-43c4-ad21-1b4389c174bd","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:39:59.753735Z","description":"","frontend_count":0,"id":"132c647f-dac4-43b4-9879-246eafbc3b7d","instances":[{"created_at":"2023-06-29T13:37:04.774634Z","id":"bdab664c-eff3-41c6-acf0-4e03d0c452ed","ip_address":"10.68.152.43","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:40:30.729289Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"132c647f-dac4-43b4-9879-246eafbc3b7d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:40:02.545836Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"backend01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:40:30.402150Z"}' + body: '{"created_at":"2023-07-03T20:21:28.362947Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8142c8d3-7e08-4525-ba61-615644f84da2","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:20:57.651634Z","description":"","frontend_count":0,"id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","instances":[{"created_at":"2023-07-03T20:19:54.699720Z","id":"5130d74e-354f-4ea1-addc-b9a6414c3011","ip_address":"10.76.70.87","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:21:28.629979Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:20:59.847522Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"backend01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:21:28.362947Z"}' headers: Content-Length: - - "1954" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:31 GMT + - Mon, 03 Jul 2023 20:21:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -630,7 +630,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e74c72d-7c07-41bf-ac13-1cf7fdcdac5f + - d0cc9328-b59e-4295-bb51-bc86a402fd7d status: 200 OK code: 200 duration: "" @@ -641,19 +641,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/132c647f-dac4-43b4-9879-246eafbc3b7d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8e92106b-b7a0-4aa2-83c4-eba0fc2767ca method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:39:59.753735Z","description":"","frontend_count":0,"id":"132c647f-dac4-43b4-9879-246eafbc3b7d","instances":[{"created_at":"2023-06-29T13:37:04.774634Z","id":"bdab664c-eff3-41c6-acf0-4e03d0c452ed","ip_address":"10.68.152.43","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:40:30.729289Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"132c647f-dac4-43b4-9879-246eafbc3b7d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:40:02.545836Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:20:57.651634Z","description":"","frontend_count":0,"id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","instances":[{"created_at":"2023-07-03T20:19:54.699720Z","id":"5130d74e-354f-4ea1-addc-b9a6414c3011","ip_address":"10.76.70.87","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:21:28.629979Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:20:59.847522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1105" + - "1076" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:31 GMT + - Mon, 03 Jul 2023 20:21:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -663,7 +663,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 013a5fb7-c523-41e5-bcd4-e047b4469065 + - d8b82011-47ff-4b0d-8106-12cd5824a9f2 status: 200 OK code: 200 duration: "" @@ -674,19 +674,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/d11c5a46-cf6d-43c4-ad21-1b4389c174bd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/8142c8d3-7e08-4525-ba61-615644f84da2 method: GET response: - body: '{"created_at":"2023-06-29T13:40:30.402150Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"d11c5a46-cf6d-43c4-ad21-1b4389c174bd","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:39:59.753735Z","description":"","frontend_count":0,"id":"132c647f-dac4-43b4-9879-246eafbc3b7d","instances":[{"created_at":"2023-06-29T13:37:04.774634Z","id":"bdab664c-eff3-41c6-acf0-4e03d0c452ed","ip_address":"10.68.152.43","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:40:30.729289Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"132c647f-dac4-43b4-9879-246eafbc3b7d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:40:02.545836Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"backend01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:40:30.402150Z"}' + body: '{"created_at":"2023-07-03T20:21:28.362947Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8142c8d3-7e08-4525-ba61-615644f84da2","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:20:57.651634Z","description":"","frontend_count":0,"id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","instances":[{"created_at":"2023-07-03T20:19:54.699720Z","id":"5130d74e-354f-4ea1-addc-b9a6414c3011","ip_address":"10.76.70.87","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:21:28.629979Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:20:59.847522Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"backend01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:21:28.362947Z"}' headers: Content-Length: - - "1954" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:31 GMT + - Mon, 03 Jul 2023 20:21:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -696,7 +696,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6dc4c3a-453f-4432-bc8f-cb11a5ba670a + - 7db1850c-36ee-43db-bb7d-7e4a81bd49b5 status: 200 OK code: 200 duration: "" @@ -707,19 +707,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/132c647f-dac4-43b4-9879-246eafbc3b7d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8e92106b-b7a0-4aa2-83c4-eba0fc2767ca method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:39:59.753735Z","description":"","frontend_count":0,"id":"132c647f-dac4-43b4-9879-246eafbc3b7d","instances":[{"created_at":"2023-06-29T13:37:04.774634Z","id":"bdab664c-eff3-41c6-acf0-4e03d0c452ed","ip_address":"10.68.152.43","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:40:30.729289Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"132c647f-dac4-43b4-9879-246eafbc3b7d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:40:02.545836Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:20:57.651634Z","description":"","frontend_count":0,"id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","instances":[{"created_at":"2023-07-03T20:19:54.699720Z","id":"5130d74e-354f-4ea1-addc-b9a6414c3011","ip_address":"10.76.70.87","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:21:28.629979Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:20:59.847522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1105" + - "1076" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:31 GMT + - Mon, 03 Jul 2023 20:21:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -729,7 +729,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b87a38d6-5fca-4801-8bf5-1e51301eb4eb + - 4bed2a21-3f54-48a5-b495-a28690e08091 status: 200 OK code: 200 duration: "" @@ -740,19 +740,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"132c647f-dac4-43b4-9879-246eafbc3b7d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "319" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:31 GMT + - Mon, 03 Jul 2023 20:21:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -762,7 +762,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9aa34e24-3c4d-4052-a5cc-367d93cd1816 + - f5c31774-9353-4068-a3a6-f6560b9fbe9f status: 200 OK code: 200 duration: "" @@ -773,19 +773,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/132c647f-dac4-43b4-9879-246eafbc3b7d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8e92106b-b7a0-4aa2-83c4-eba0fc2767ca method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:39:59.753735Z","description":"","frontend_count":0,"id":"132c647f-dac4-43b4-9879-246eafbc3b7d","instances":[{"created_at":"2023-06-29T13:37:04.774634Z","id":"bdab664c-eff3-41c6-acf0-4e03d0c452ed","ip_address":"10.68.152.43","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:40:30.729289Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"132c647f-dac4-43b4-9879-246eafbc3b7d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:40:02.545836Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:20:57.651634Z","description":"","frontend_count":0,"id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","instances":[{"created_at":"2023-07-03T20:19:54.699720Z","id":"5130d74e-354f-4ea1-addc-b9a6414c3011","ip_address":"10.76.70.87","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:21:28.629979Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:20:59.847522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1105" + - "1076" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:32 GMT + - Mon, 03 Jul 2023 20:21:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -795,7 +795,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7277b276-9064-4bc4-89dd-f8041f95af80 + - ff405774-e651-40e5-97e0-b808124165f9 status: 200 OK code: 200 duration: "" @@ -806,19 +806,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/132c647f-dac4-43b4-9879-246eafbc3b7d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8e92106b-b7a0-4aa2-83c4-eba0fc2767ca method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:39:59.753735Z","description":"","frontend_count":0,"id":"132c647f-dac4-43b4-9879-246eafbc3b7d","instances":[{"created_at":"2023-06-29T13:37:04.774634Z","id":"bdab664c-eff3-41c6-acf0-4e03d0c452ed","ip_address":"10.68.152.43","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:40:30.729289Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"132c647f-dac4-43b4-9879-246eafbc3b7d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:40:02.545836Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:20:57.651634Z","description":"","frontend_count":0,"id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","instances":[{"created_at":"2023-07-03T20:19:54.699720Z","id":"5130d74e-354f-4ea1-addc-b9a6414c3011","ip_address":"10.76.70.87","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:21:28.629979Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:20:59.847522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1105" + - "1076" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:32 GMT + - Mon, 03 Jul 2023 20:21:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -828,7 +828,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - afa773ae-514d-4417-aad6-147820664a54 + - 160d1208-8fbe-4787-b2db-00bd1667811b status: 200 OK code: 200 duration: "" @@ -839,19 +839,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/132c647f-dac4-43b4-9879-246eafbc3b7d/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8e92106b-b7a0-4aa2-83c4-eba0fc2767ca/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:32 GMT + - Mon, 03 Jul 2023 20:21:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -861,7 +861,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65681f26-bb74-4116-917d-9c00aebf7072 + - d9981e72-4b58-4ef9-89a1-469a4ae04d09 status: 200 OK code: 200 duration: "" @@ -872,19 +872,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/d11c5a46-cf6d-43c4-ad21-1b4389c174bd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/8142c8d3-7e08-4525-ba61-615644f84da2 method: GET response: - body: '{"created_at":"2023-06-29T13:40:30.402150Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"d11c5a46-cf6d-43c4-ad21-1b4389c174bd","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:39:59.753735Z","description":"","frontend_count":0,"id":"132c647f-dac4-43b4-9879-246eafbc3b7d","instances":[{"created_at":"2023-06-29T13:37:04.774634Z","id":"bdab664c-eff3-41c6-acf0-4e03d0c452ed","ip_address":"10.68.152.43","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:40:30.729289Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"132c647f-dac4-43b4-9879-246eafbc3b7d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:40:02.545836Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"backend01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:40:30.402150Z"}' + body: '{"created_at":"2023-07-03T20:21:28.362947Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8142c8d3-7e08-4525-ba61-615644f84da2","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:20:57.651634Z","description":"","frontend_count":0,"id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","instances":[{"created_at":"2023-07-03T20:19:54.699720Z","id":"5130d74e-354f-4ea1-addc-b9a6414c3011","ip_address":"10.76.70.87","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:21:28.629979Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:20:59.847522Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"backend01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:21:28.362947Z"}' headers: Content-Length: - - "1954" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:32 GMT + - Mon, 03 Jul 2023 20:21:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -894,7 +894,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4ef63731-fb09-4ceb-a556-2d5d158d4e8f + - 8b65b7c5-cdf2-4e7e-8617-54b8f0b28892 status: 200 OK code: 200 duration: "" @@ -905,19 +905,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/132c647f-dac4-43b4-9879-246eafbc3b7d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8e92106b-b7a0-4aa2-83c4-eba0fc2767ca method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:39:59.753735Z","description":"","frontend_count":0,"id":"132c647f-dac4-43b4-9879-246eafbc3b7d","instances":[{"created_at":"2023-06-29T13:37:04.774634Z","id":"bdab664c-eff3-41c6-acf0-4e03d0c452ed","ip_address":"10.68.152.43","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:40:30.729289Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"132c647f-dac4-43b4-9879-246eafbc3b7d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:40:02.545836Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:20:57.651634Z","description":"","frontend_count":0,"id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","instances":[{"created_at":"2023-07-03T20:19:54.699720Z","id":"5130d74e-354f-4ea1-addc-b9a6414c3011","ip_address":"10.76.70.87","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:21:28.629979Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:20:59.847522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1105" + - "1076" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:32 GMT + - Mon, 03 Jul 2023 20:21:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -927,7 +927,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 21fc20d7-3401-44ee-aebf-56361cbcd98d + - 65fb0674-1dfd-4bdb-8181-fa7d173ced53 status: 200 OK code: 200 duration: "" @@ -938,19 +938,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/132c647f-dac4-43b4-9879-246eafbc3b7d/backends?name=backend01&order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8e92106b-b7a0-4aa2-83c4-eba0fc2767ca/backends?name=backend01&order_by=created_at_asc method: GET response: - body: '{"backends":[{"created_at":"2023-06-29T13:40:30.402150Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"d11c5a46-cf6d-43c4-ad21-1b4389c174bd","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"backend01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:40:30.402150Z"}],"total_count":1}' + body: '{"backends":[{"created_at":"2023-07-03T20:21:28.362947Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8142c8d3-7e08-4525-ba61-615644f84da2","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"backend01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:21:28.362947Z"}],"total_count":1}' headers: Content-Length: - - "1302" + - "1256" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:32 GMT + - Mon, 03 Jul 2023 20:21:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -960,7 +960,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02c07e9f-b110-4064-8c52-543d7e6f1a56 + - 8fe38dd3-0ab5-477b-a933-650ffbe9828c status: 200 OK code: 200 duration: "" @@ -971,19 +971,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/d11c5a46-cf6d-43c4-ad21-1b4389c174bd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/8142c8d3-7e08-4525-ba61-615644f84da2 method: GET response: - body: '{"created_at":"2023-06-29T13:40:30.402150Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"d11c5a46-cf6d-43c4-ad21-1b4389c174bd","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:39:59.753735Z","description":"","frontend_count":0,"id":"132c647f-dac4-43b4-9879-246eafbc3b7d","instances":[{"created_at":"2023-06-29T13:37:04.774634Z","id":"bdab664c-eff3-41c6-acf0-4e03d0c452ed","ip_address":"10.68.152.43","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:40:30.729289Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"132c647f-dac4-43b4-9879-246eafbc3b7d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:40:02.545836Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"backend01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:40:30.402150Z"}' + body: '{"created_at":"2023-07-03T20:21:28.362947Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8142c8d3-7e08-4525-ba61-615644f84da2","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:20:57.651634Z","description":"","frontend_count":0,"id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","instances":[{"created_at":"2023-07-03T20:19:54.699720Z","id":"5130d74e-354f-4ea1-addc-b9a6414c3011","ip_address":"10.76.70.87","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:21:28.629979Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:20:59.847522Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"backend01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:21:28.362947Z"}' headers: Content-Length: - - "1954" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:32 GMT + - Mon, 03 Jul 2023 20:21:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -993,7 +993,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 071c3b97-2be8-4d03-bba5-c20b34b9d208 + - 8ff67941-68e7-4601-b420-f64b868e1979 status: 200 OK code: 200 duration: "" @@ -1004,19 +1004,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/132c647f-dac4-43b4-9879-246eafbc3b7d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8e92106b-b7a0-4aa2-83c4-eba0fc2767ca method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:39:59.753735Z","description":"","frontend_count":0,"id":"132c647f-dac4-43b4-9879-246eafbc3b7d","instances":[{"created_at":"2023-06-29T13:37:04.774634Z","id":"bdab664c-eff3-41c6-acf0-4e03d0c452ed","ip_address":"10.68.152.43","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:40:30.729289Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"132c647f-dac4-43b4-9879-246eafbc3b7d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:40:02.545836Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:20:57.651634Z","description":"","frontend_count":0,"id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","instances":[{"created_at":"2023-07-03T20:19:54.699720Z","id":"5130d74e-354f-4ea1-addc-b9a6414c3011","ip_address":"10.76.70.87","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:21:28.629979Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:20:59.847522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1105" + - "1076" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:32 GMT + - Mon, 03 Jul 2023 20:21:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1026,7 +1026,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d859b8c1-9b2f-46e8-a418-9bd2fff69464 + - 4507a527-552b-40d5-9c01-1df3e11e5f66 status: 200 OK code: 200 duration: "" @@ -1037,19 +1037,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/d11c5a46-cf6d-43c4-ad21-1b4389c174bd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/8142c8d3-7e08-4525-ba61-615644f84da2 method: GET response: - body: '{"created_at":"2023-06-29T13:40:30.402150Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"d11c5a46-cf6d-43c4-ad21-1b4389c174bd","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:39:59.753735Z","description":"","frontend_count":0,"id":"132c647f-dac4-43b4-9879-246eafbc3b7d","instances":[{"created_at":"2023-06-29T13:37:04.774634Z","id":"bdab664c-eff3-41c6-acf0-4e03d0c452ed","ip_address":"10.68.152.43","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:40:30.729289Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"132c647f-dac4-43b4-9879-246eafbc3b7d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:40:02.545836Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"backend01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:40:30.402150Z"}' + body: '{"created_at":"2023-07-03T20:21:28.362947Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8142c8d3-7e08-4525-ba61-615644f84da2","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:20:57.651634Z","description":"","frontend_count":0,"id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","instances":[{"created_at":"2023-07-03T20:19:54.699720Z","id":"5130d74e-354f-4ea1-addc-b9a6414c3011","ip_address":"10.76.70.87","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:21:28.629979Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:20:59.847522Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"backend01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:21:28.362947Z"}' headers: Content-Length: - - "1954" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:32 GMT + - Mon, 03 Jul 2023 20:21:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1059,7 +1059,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cdd8ffcd-b8e0-4db9-a4da-f2d64bde3752 + - df2f412d-d09e-40aa-87ba-694f7074476f status: 200 OK code: 200 duration: "" @@ -1070,19 +1070,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/132c647f-dac4-43b4-9879-246eafbc3b7d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8e92106b-b7a0-4aa2-83c4-eba0fc2767ca method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:39:59.753735Z","description":"","frontend_count":0,"id":"132c647f-dac4-43b4-9879-246eafbc3b7d","instances":[{"created_at":"2023-06-29T13:37:04.774634Z","id":"bdab664c-eff3-41c6-acf0-4e03d0c452ed","ip_address":"10.68.152.43","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:40:30.729289Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"132c647f-dac4-43b4-9879-246eafbc3b7d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:40:02.545836Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:20:57.651634Z","description":"","frontend_count":0,"id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","instances":[{"created_at":"2023-07-03T20:19:54.699720Z","id":"5130d74e-354f-4ea1-addc-b9a6414c3011","ip_address":"10.76.70.87","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:21:28.629979Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:20:59.847522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1105" + - "1076" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:32 GMT + - Mon, 03 Jul 2023 20:21:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1092,7 +1092,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64e275a3-7dcd-461a-bf70-e8374339e219 + - c3345e9d-1fc8-4377-ab1e-b6be09b0c2cb status: 200 OK code: 200 duration: "" @@ -1103,19 +1103,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/132c647f-dac4-43b4-9879-246eafbc3b7d/backends?name=backend01&order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8e92106b-b7a0-4aa2-83c4-eba0fc2767ca/backends?name=backend01&order_by=created_at_asc method: GET response: - body: '{"backends":[{"created_at":"2023-06-29T13:40:30.402150Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"d11c5a46-cf6d-43c4-ad21-1b4389c174bd","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"backend01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:40:30.402150Z"}],"total_count":1}' + body: '{"backends":[{"created_at":"2023-07-03T20:21:28.362947Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8142c8d3-7e08-4525-ba61-615644f84da2","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"backend01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:21:28.362947Z"}],"total_count":1}' headers: Content-Length: - - "1302" + - "1256" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:32 GMT + - Mon, 03 Jul 2023 20:21:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1125,7 +1125,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e0a7dfd-debb-4702-abee-7ee1f63bb4a9 + - d29e487f-809a-4983-8646-242ddd225682 status: 200 OK code: 200 duration: "" @@ -1136,19 +1136,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/d11c5a46-cf6d-43c4-ad21-1b4389c174bd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/8142c8d3-7e08-4525-ba61-615644f84da2 method: GET response: - body: '{"created_at":"2023-06-29T13:40:30.402150Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"d11c5a46-cf6d-43c4-ad21-1b4389c174bd","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:39:59.753735Z","description":"","frontend_count":0,"id":"132c647f-dac4-43b4-9879-246eafbc3b7d","instances":[{"created_at":"2023-06-29T13:37:04.774634Z","id":"bdab664c-eff3-41c6-acf0-4e03d0c452ed","ip_address":"10.68.152.43","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:40:30.729289Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"132c647f-dac4-43b4-9879-246eafbc3b7d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:40:02.545836Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"backend01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:40:30.402150Z"}' + body: '{"created_at":"2023-07-03T20:21:28.362947Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8142c8d3-7e08-4525-ba61-615644f84da2","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:20:57.651634Z","description":"","frontend_count":0,"id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","instances":[{"created_at":"2023-07-03T20:19:54.699720Z","id":"5130d74e-354f-4ea1-addc-b9a6414c3011","ip_address":"10.76.70.87","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:21:28.629979Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:20:59.847522Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"backend01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:21:28.362947Z"}' headers: Content-Length: - - "1954" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:32 GMT + - Mon, 03 Jul 2023 20:21:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1158,7 +1158,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1fdd3c6f-a14f-4f71-a334-b1a9543b12f2 + - b3f6ae42-b272-4877-8a73-fb7820466169 status: 200 OK code: 200 duration: "" @@ -1169,19 +1169,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/d11c5a46-cf6d-43c4-ad21-1b4389c174bd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8e92106b-b7a0-4aa2-83c4-eba0fc2767ca method: GET response: - body: '{"created_at":"2023-06-29T13:40:30.402150Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"d11c5a46-cf6d-43c4-ad21-1b4389c174bd","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:39:59.753735Z","description":"","frontend_count":0,"id":"132c647f-dac4-43b4-9879-246eafbc3b7d","instances":[{"created_at":"2023-06-29T13:37:04.774634Z","id":"bdab664c-eff3-41c6-acf0-4e03d0c452ed","ip_address":"10.68.152.43","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:40:30.729289Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"132c647f-dac4-43b4-9879-246eafbc3b7d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:40:02.545836Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"backend01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:40:30.402150Z"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:20:57.651634Z","description":"","frontend_count":0,"id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","instances":[{"created_at":"2023-07-03T20:19:54.699720Z","id":"5130d74e-354f-4ea1-addc-b9a6414c3011","ip_address":"10.76.70.87","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:21:28.629979Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:20:59.847522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1954" + - "1076" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:32 GMT + - Mon, 03 Jul 2023 20:21:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1191,7 +1191,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92380eb4-0417-44dd-9c9b-a0664e3f937c + - 692a48c7-7e42-4d0b-a68b-795a3397ba52 status: 200 OK code: 200 duration: "" @@ -1202,19 +1202,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/132c647f-dac4-43b4-9879-246eafbc3b7d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/8142c8d3-7e08-4525-ba61-615644f84da2 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:39:59.753735Z","description":"","frontend_count":0,"id":"132c647f-dac4-43b4-9879-246eafbc3b7d","instances":[{"created_at":"2023-06-29T13:37:04.774634Z","id":"bdab664c-eff3-41c6-acf0-4e03d0c452ed","ip_address":"10.68.152.43","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:40:30.729289Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"132c647f-dac4-43b4-9879-246eafbc3b7d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:40:02.545836Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-07-03T20:21:28.362947Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8142c8d3-7e08-4525-ba61-615644f84da2","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:20:57.651634Z","description":"","frontend_count":0,"id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","instances":[{"created_at":"2023-07-03T20:19:54.699720Z","id":"5130d74e-354f-4ea1-addc-b9a6414c3011","ip_address":"10.76.70.87","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:21:28.629979Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:20:59.847522Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"backend01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:21:28.362947Z"}' headers: Content-Length: - - "1105" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:32 GMT + - Mon, 03 Jul 2023 20:21:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1224,7 +1224,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f2aba3f-b78b-45d8-8ca0-661dd2db0eb8 + - 72911140-d49f-4d12-8834-c37647c5a259 status: 200 OK code: 200 duration: "" @@ -1235,19 +1235,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/132c647f-dac4-43b4-9879-246eafbc3b7d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8e92106b-b7a0-4aa2-83c4-eba0fc2767ca method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:39:59.753735Z","description":"","frontend_count":0,"id":"132c647f-dac4-43b4-9879-246eafbc3b7d","instances":[{"created_at":"2023-06-29T13:37:04.774634Z","id":"bdab664c-eff3-41c6-acf0-4e03d0c452ed","ip_address":"10.68.152.43","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:40:30.729289Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"132c647f-dac4-43b4-9879-246eafbc3b7d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:40:02.545836Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:20:57.651634Z","description":"","frontend_count":0,"id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","instances":[{"created_at":"2023-07-03T20:19:54.699720Z","id":"5130d74e-354f-4ea1-addc-b9a6414c3011","ip_address":"10.76.70.87","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:21:28.629979Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:20:59.847522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1105" + - "1076" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:32 GMT + - Mon, 03 Jul 2023 20:21:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1257,7 +1257,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08e73605-a64d-4b38-9a50-34ad8c64f952 + - 025e3260-58e1-4f01-a68d-88714d99f6b4 status: 200 OK code: 200 duration: "" @@ -1268,19 +1268,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/132c647f-dac4-43b4-9879-246eafbc3b7d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8e92106b-b7a0-4aa2-83c4-eba0fc2767ca method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:39:59.753735Z","description":"","frontend_count":0,"id":"132c647f-dac4-43b4-9879-246eafbc3b7d","instances":[{"created_at":"2023-06-29T13:37:04.774634Z","id":"bdab664c-eff3-41c6-acf0-4e03d0c452ed","ip_address":"10.68.152.43","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:40:30.729289Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"132c647f-dac4-43b4-9879-246eafbc3b7d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:40:02.545836Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:20:57.651634Z","description":"","frontend_count":0,"id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","instances":[{"created_at":"2023-07-03T20:19:54.699720Z","id":"5130d74e-354f-4ea1-addc-b9a6414c3011","ip_address":"10.76.70.87","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:21:28.629979Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:20:59.847522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1105" + - "1076" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:33 GMT + - Mon, 03 Jul 2023 20:21:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1290,7 +1290,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c8eff73d-1be9-4d82-82dd-1c35cab23c6b + - b566589e-6e0f-4c4d-b249-8ab2739d3e17 status: 200 OK code: 200 duration: "" @@ -1301,7 +1301,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/d11c5a46-cf6d-43c4-ad21-1b4389c174bd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/8142c8d3-7e08-4525-ba61-615644f84da2 method: DELETE response: body: "" @@ -1311,7 +1311,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:33 GMT + - Mon, 03 Jul 2023 20:21:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1321,7 +1321,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c973e5e2-ba9a-44d1-9074-7b78540cdb35 + - 8a692562-0e6d-4f53-8043-15dc6a79b54a status: 204 No Content code: 204 duration: "" @@ -1332,19 +1332,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/132c647f-dac4-43b4-9879-246eafbc3b7d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8e92106b-b7a0-4aa2-83c4-eba0fc2767ca method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:39:59.753735Z","description":"","frontend_count":0,"id":"132c647f-dac4-43b4-9879-246eafbc3b7d","instances":[{"created_at":"2023-06-29T13:37:04.774634Z","id":"bdab664c-eff3-41c6-acf0-4e03d0c452ed","ip_address":"10.68.152.43","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:40:33.507396Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"132c647f-dac4-43b4-9879-246eafbc3b7d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:40:02.545836Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:20:57.651634Z","description":"","frontend_count":0,"id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","instances":[{"created_at":"2023-07-03T20:19:54.699720Z","id":"5130d74e-354f-4ea1-addc-b9a6414c3011","ip_address":"10.76.70.87","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:21:31.155864Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:20:59.847522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1107" + - "1078" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:33 GMT + - Mon, 03 Jul 2023 20:21:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1354,7 +1354,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20979eaa-8b8c-43e5-9844-45da21daff91 + - daa96cf2-6c30-4667-bef9-4e6c84dbd215 status: 200 OK code: 200 duration: "" @@ -1365,19 +1365,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/132c647f-dac4-43b4-9879-246eafbc3b7d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8e92106b-b7a0-4aa2-83c4-eba0fc2767ca method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:39:59.753735Z","description":"","frontend_count":0,"id":"132c647f-dac4-43b4-9879-246eafbc3b7d","instances":[{"created_at":"2023-06-29T13:37:04.774634Z","id":"bdab664c-eff3-41c6-acf0-4e03d0c452ed","ip_address":"10.68.152.43","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:40:33.507396Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"132c647f-dac4-43b4-9879-246eafbc3b7d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:40:02.545836Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:20:57.651634Z","description":"","frontend_count":0,"id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","instances":[{"created_at":"2023-07-03T20:19:54.699720Z","id":"5130d74e-354f-4ea1-addc-b9a6414c3011","ip_address":"10.76.70.87","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:21:31.377173Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:20:59.847522Z","zone":"fr-par-1"}' headers: Content-Length: - - "1107" + - "1076" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:33 GMT + - Mon, 03 Jul 2023 20:21:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1387,7 +1387,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69b94a8a-4134-45a4-9190-a72d1532ef98 + - ee13338c-052f-4206-8a5d-a4fbbf2d86ef status: 200 OK code: 200 duration: "" @@ -1398,7 +1398,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/132c647f-dac4-43b4-9879-246eafbc3b7d?release_ip=false + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8e92106b-b7a0-4aa2-83c4-eba0fc2767ca?release_ip=false method: DELETE response: body: "" @@ -1408,7 +1408,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:34 GMT + - Mon, 03 Jul 2023 20:21:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1418,7 +1418,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9565709-c5f6-492d-981b-8f2370422a71 + - d02af21f-8e78-4079-9606-9b41df8d09dc status: 204 No Content code: 204 duration: "" @@ -1429,19 +1429,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/132c647f-dac4-43b4-9879-246eafbc3b7d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8e92106b-b7a0-4aa2-83c4-eba0fc2767ca method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:39:59.753735Z","description":"","frontend_count":0,"id":"132c647f-dac4-43b4-9879-246eafbc3b7d","instances":[{"created_at":"2023-06-29T13:37:04.774634Z","id":"bdab664c-eff3-41c6-acf0-4e03d0c452ed","ip_address":"10.68.152.43","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:40:33.736750Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"132c647f-dac4-43b4-9879-246eafbc3b7d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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":"2023-06-29T13:40:33.856028Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:20:57.651634Z","description":"","frontend_count":0,"id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","instances":[{"created_at":"2023-07-03T20:19:54.699720Z","id":"5130d74e-354f-4ea1-addc-b9a6414c3011","ip_address":"10.76.70.87","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:21:31.377173Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8e92106b-b7a0-4aa2-83c4-eba0fc2767ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"data-test-lb-backend","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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":"2023-07-03T20:21:31.497131Z","zone":"fr-par-1"}' headers: Content-Length: - - "1109" + - "1080" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:40:34 GMT + - Mon, 03 Jul 2023 20:21:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1451,7 +1451,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a5b0476b-5427-4e8d-926f-e2f676b977ca + - e0c7e4d4-5820-40b7-8401-10c3c6f5ed5c status: 200 OK code: 200 duration: "" @@ -1462,7 +1462,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/132c647f-dac4-43b4-9879-246eafbc3b7d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8e92106b-b7a0-4aa2-83c4-eba0fc2767ca method: GET response: body: '{"message":"lbs not Found"}' @@ -1474,7 +1474,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:41:04 GMT + - Mon, 03 Jul 2023 20:22:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1484,7 +1484,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae187e76-0a0f-45a7-942f-eef595708bdc + - 3b9187f2-5933-4b5a-923e-801f1db677a0 status: 404 Not Found code: 404 duration: "" @@ -1495,7 +1495,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/132c647f-dac4-43b4-9879-246eafbc3b7d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8e92106b-b7a0-4aa2-83c4-eba0fc2767ca method: GET response: body: '{"message":"lbs not Found"}' @@ -1507,7 +1507,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:41:04 GMT + - Mon, 03 Jul 2023 20:22:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1517,7 +1517,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b3702ae7-faf1-4ace-9fa5-7b6e6aba71c6 + - efa3016d-7738-4bb4-93ef-eedacaa4b782 status: 404 Not Found code: 404 duration: "" @@ -1528,19 +1528,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "285" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:41:04 GMT + - Mon, 03 Jul 2023 20:22:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1550,7 +1550,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e04ddafb-22c8-49a1-b2f6-a8e300ee5ac5 + - 3c013061-8008-444e-8fb4-9799ea065252 status: 200 OK code: 200 duration: "" @@ -1561,7 +1561,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: DELETE response: body: "" @@ -1571,7 +1571,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:41:04 GMT + - Mon, 03 Jul 2023 20:22:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1581,7 +1581,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8714dbdd-bf1c-44a0-860d-b0b1caac4ae6 + - c601d2c4-670f-4be4-95da-11b6bcbdce5d status: 204 No Content code: 204 duration: "" @@ -1592,7 +1592,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/132c647f-dac4-43b4-9879-246eafbc3b7d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8e92106b-b7a0-4aa2-83c4-eba0fc2767ca method: GET response: body: '{"message":"lbs not Found"}' @@ -1604,7 +1604,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:41:04 GMT + - Mon, 03 Jul 2023 20:22:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1614,7 +1614,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a83600a-8e57-49e0-8b01-fb0e7c0b89ba + - efe3ee30-547c-46b2-8bed-fa93391cb98b status: 404 Not Found code: 404 duration: "" @@ -1625,7 +1625,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: body: '{"message":"ips not Found"}' @@ -1637,7 +1637,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:41:04 GMT + - Mon, 03 Jul 2023 20:22:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1647,7 +1647,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 24f94c12-2eee-4491-bb27-b8118ece5ed0 + - 85829847-392f-4033-885e-9b9a0b3b2e24 status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/data-source-lb-backends-basic.cassette.yaml b/scaleway/testdata/data-source-lb-backends-basic.cassette.yaml index d8d60a8427..e725fed623 100644 --- a/scaleway/testdata/data-source-lb-backends-basic.cassette.yaml +++ b/scaleway/testdata/data-source-lb-backends-basic.cassette.yaml @@ -13,16 +13,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips method: POST response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "285" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:48 GMT + - Mon, 03 Jul 2023 20:19:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -32,7 +32,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15efdeba-700d-4819-ba00-c05577489048 + - a06e1740-5674-452c-850d-798c03a5f1d0 status: 200 OK code: 200 duration: "" @@ -43,19 +43,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "285" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:48 GMT + - Mon, 03 Jul 2023 20:19:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -65,12 +65,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11b5e27a-7c8b-4933-a3b2-2f26f18b5637 + - 6e21a97c-6d79-413d-97b1-e5f6bdc53b65 status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-lb","description":"","ip_id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","assign_flexible_ip":null,"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":"86df9ff8-7a77-492d-9b03-4f6205127499","assign_flexible_ip":null,"tags":null,"type":"lb-s","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' form: {} headers: Content-Type: @@ -81,16 +81,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs method: POST response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:38:48.281564285Z","description":"","frontend_count":0,"id":"8705a921-a633-4252-ab04-3dd56a8320fa","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"8705a921-a633-4252-ab04-3dd56a8320fa","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:38:48.281564285Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:19:45.604414991Z","description":"","frontend_count":0,"id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:19:45.604414991Z","zone":"fr-par-1"}' headers: Content-Length: - - "884" + - "862" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:48 GMT + - Mon, 03 Jul 2023 20:19:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -100,7 +100,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d0da4bca-b9e1-4ae4-9bfd-2f850572f015 + - 2995a7c1-44ce-4f55-b2f7-151b27d19d76 status: 200 OK code: 200 duration: "" @@ -111,19 +111,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:38:48.281564Z","description":"","frontend_count":0,"id":"8705a921-a633-4252-ab04-3dd56a8320fa","instances":[{"created_at":"2023-06-29T13:37:34.405051Z","id":"d8e8a5a2-ddec-4410-a6b7-07558df385b3","ip_address":"10.70.78.67","region":"fr-par","status":"unknown","updated_at":"2023-06-29T13:38:48.494498Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"8705a921-a633-4252-ab04-3dd56a8320fa","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:38:48.503604Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:19:45.604415Z","description":"","frontend_count":0,"id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","instances":[{"created_at":"2023-07-03T20:18:34.660790Z","id":"e8a2e103-7300-4792-bde4-4e241dc7a003","ip_address":"10.64.146.23","region":"fr-par","status":"unknown","updated_at":"2023-07-03T20:19:45.851136Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:19:45.604415Z","zone":"fr-par-1"}' headers: Content-Length: - - "1096" + - "1070" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:48 GMT + - Mon, 03 Jul 2023 20:19:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -133,7 +133,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60be0e65-92a5-4536-be85-34f66fe822c4 + - f391f6eb-9629-4575-94a4-732ffe30d604 status: 200 OK code: 200 duration: "" @@ -144,19 +144,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:38:48.281564Z","description":"","frontend_count":0,"id":"8705a921-a633-4252-ab04-3dd56a8320fa","instances":[{"created_at":"2023-06-29T13:37:34.405051Z","id":"d8e8a5a2-ddec-4410-a6b7-07558df385b3","ip_address":"10.70.78.67","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:38:49.458509Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"8705a921-a633-4252-ab04-3dd56a8320fa","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:38:50.837853Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:19:45.604415Z","description":"","frontend_count":0,"id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","instances":[{"created_at":"2023-07-03T20:18:34.660790Z","id":"e8a2e103-7300-4792-bde4-4e241dc7a003","ip_address":"10.64.146.23","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:19:46.751406Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:19:48.205428Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:18 GMT + - Mon, 03 Jul 2023 20:20:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -166,7 +166,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5010aad6-e4f9-468b-8e63-cd44462e9c56 + - 865bbe39-067c-4274-b2f9-41633b78112a status: 200 OK code: 200 duration: "" @@ -177,19 +177,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:38:48.281564Z","description":"","frontend_count":0,"id":"8705a921-a633-4252-ab04-3dd56a8320fa","instances":[{"created_at":"2023-06-29T13:37:34.405051Z","id":"d8e8a5a2-ddec-4410-a6b7-07558df385b3","ip_address":"10.70.78.67","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:38:49.458509Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"8705a921-a633-4252-ab04-3dd56a8320fa","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:38:50.837853Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:19:45.604415Z","description":"","frontend_count":0,"id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","instances":[{"created_at":"2023-07-03T20:18:34.660790Z","id":"e8a2e103-7300-4792-bde4-4e241dc7a003","ip_address":"10.64.146.23","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:19:46.751406Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:19:48.205428Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:18 GMT + - Mon, 03 Jul 2023 20:20:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -199,7 +199,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62b7c0e1-736f-4d61-b21b-0ca1dce7ed99 + - e8d03608-c074-428b-bac1-8e743f80daea status: 200 OK code: 200 duration: "" @@ -210,19 +210,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:18 GMT + - Mon, 03 Jul 2023 20:20:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -232,7 +232,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a45c2645-1ea1-413d-b1d9-70f972e985bf + - a226d528-0f60-49f9-b13b-511cfdb1d0df status: 200 OK code: 200 duration: "" @@ -243,19 +243,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:38:48.281564Z","description":"","frontend_count":0,"id":"8705a921-a633-4252-ab04-3dd56a8320fa","instances":[{"created_at":"2023-06-29T13:37:34.405051Z","id":"d8e8a5a2-ddec-4410-a6b7-07558df385b3","ip_address":"10.70.78.67","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:38:49.458509Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"8705a921-a633-4252-ab04-3dd56a8320fa","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:38:50.837853Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:19:45.604415Z","description":"","frontend_count":0,"id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","instances":[{"created_at":"2023-07-03T20:18:34.660790Z","id":"e8a2e103-7300-4792-bde4-4e241dc7a003","ip_address":"10.64.146.23","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:19:46.751406Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:19:48.205428Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:19 GMT + - Mon, 03 Jul 2023 20:20:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -265,12 +265,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95a3590d-d491-40d6-8925-1945a23c5042 + - 93d43763-4435-40e3-b4ed-b72887431751 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-backend-datasource0","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":null,"check_delay":60000,"check_timeout":30000},"server_ip":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":null,"max_retries":3,"max_connections":null,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' + body: '{"name":"tf-backend-datasource0","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":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":null,"max_retries":3,"max_connections":null,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' form: {} headers: Content-Type: @@ -278,19 +278,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa/backends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0/backends method: POST response: - body: '{"created_at":"2023-06-29T13:39:19.137218508Z","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":null},"id":"5348aa1e-eb86-43c8-b520-75b062ee1526","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:38:48.281564Z","description":"","frontend_count":0,"id":"8705a921-a633-4252-ab04-3dd56a8320fa","instances":[{"created_at":"2023-06-29T13:37:34.405051Z","id":"d8e8a5a2-ddec-4410-a6b7-07558df385b3","ip_address":"10.70.78.67","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:39:19.173363388Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"8705a921-a633-4252-ab04-3dd56a8320fa","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:38:50.837853Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource0","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:39:19.137218508Z"}' + body: '{"created_at":"2023-07-03T20:20:16.390150632Z","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":"a50c2f67-f87c-4b55-884c-eb7ce720fe31","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:19:45.604415Z","description":"","frontend_count":0,"id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","instances":[{"created_at":"2023-07-03T20:18:34.660790Z","id":"e8a2e103-7300-4792-bde4-4e241dc7a003","ip_address":"10.64.146.23","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:20:16.421194796Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:19:48.205428Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource0","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:20:16.390150632Z"}' headers: Content-Length: - - "1963" + - "1910" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:19 GMT + - Mon, 03 Jul 2023 20:20:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -300,7 +300,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61019da9-6070-44a8-9558-0aca7c80f349 + - 95bfdc85-54ee-4c63-b421-d004ff09d7f2 status: 200 OK code: 200 duration: "" @@ -311,19 +311,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:38:48.281564Z","description":"","frontend_count":0,"id":"8705a921-a633-4252-ab04-3dd56a8320fa","instances":[{"created_at":"2023-06-29T13:37:34.405051Z","id":"d8e8a5a2-ddec-4410-a6b7-07558df385b3","ip_address":"10.70.78.67","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:39:19.443912Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"8705a921-a633-4252-ab04-3dd56a8320fa","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:38:50.837853Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:19:45.604415Z","description":"","frontend_count":0,"id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","instances":[{"created_at":"2023-07-03T20:18:34.660790Z","id":"e8a2e103-7300-4792-bde4-4e241dc7a003","ip_address":"10.64.146.23","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:20:16.421195Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:19:48.205428Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:19 GMT + - Mon, 03 Jul 2023 20:20:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -333,7 +333,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1589c33b-eb8b-453d-a649-420f52ef5ca3 + - 9562bad1-0c15-4466-8ea9-07ba235bafd0 status: 200 OK code: 200 duration: "" @@ -344,19 +344,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/5348aa1e-eb86-43c8-b520-75b062ee1526 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/a50c2f67-f87c-4b55-884c-eb7ce720fe31 method: GET response: - body: '{"created_at":"2023-06-29T13:39:19.137219Z","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":null},"id":"5348aa1e-eb86-43c8-b520-75b062ee1526","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:38:48.281564Z","description":"","frontend_count":0,"id":"8705a921-a633-4252-ab04-3dd56a8320fa","instances":[{"created_at":"2023-06-29T13:37:34.405051Z","id":"d8e8a5a2-ddec-4410-a6b7-07558df385b3","ip_address":"10.70.78.67","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:39:19.443912Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"8705a921-a633-4252-ab04-3dd56a8320fa","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:38:50.837853Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource0","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:39:19.137219Z"}' + body: '{"created_at":"2023-07-03T20:20:16.390151Z","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":"a50c2f67-f87c-4b55-884c-eb7ce720fe31","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:19:45.604415Z","description":"","frontend_count":0,"id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","instances":[{"created_at":"2023-07-03T20:18:34.660790Z","id":"e8a2e103-7300-4792-bde4-4e241dc7a003","ip_address":"10.64.146.23","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:20:16.701268Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:19:48.205428Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource0","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:20:16.390151Z"}' headers: Content-Length: - - "1952" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:19 GMT + - Mon, 03 Jul 2023 20:20:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -366,7 +366,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b12f40d-ff59-4f52-988b-b5b911db9c96 + - a48ea242-1f6a-47e4-9946-1607c2ae7862 status: 200 OK code: 200 duration: "" @@ -377,19 +377,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:38:48.281564Z","description":"","frontend_count":0,"id":"8705a921-a633-4252-ab04-3dd56a8320fa","instances":[{"created_at":"2023-06-29T13:37:34.405051Z","id":"d8e8a5a2-ddec-4410-a6b7-07558df385b3","ip_address":"10.70.78.67","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:39:19.443912Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"8705a921-a633-4252-ab04-3dd56a8320fa","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:38:50.837853Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:19:45.604415Z","description":"","frontend_count":0,"id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","instances":[{"created_at":"2023-07-03T20:18:34.660790Z","id":"e8a2e103-7300-4792-bde4-4e241dc7a003","ip_address":"10.64.146.23","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:20:16.701268Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:19:48.205428Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:19 GMT + - Mon, 03 Jul 2023 20:20:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -399,7 +399,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6fb2f8fe-5c89-4edd-996c-158bcb9bd192 + - 1c09633e-b646-41aa-b894-1b155db97874 status: 200 OK code: 200 duration: "" @@ -410,19 +410,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"8705a921-a633-4252-ab04-3dd56a8320fa","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "319" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:20 GMT + - Mon, 03 Jul 2023 20:20:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -432,7 +432,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b782562-a340-4263-9150-5d152523f316 + - 467ecdd7-d907-4759-a085-4e230586cd25 status: 200 OK code: 200 duration: "" @@ -443,19 +443,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:38:48.281564Z","description":"","frontend_count":0,"id":"8705a921-a633-4252-ab04-3dd56a8320fa","instances":[{"created_at":"2023-06-29T13:37:34.405051Z","id":"d8e8a5a2-ddec-4410-a6b7-07558df385b3","ip_address":"10.70.78.67","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:39:19.443912Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"8705a921-a633-4252-ab04-3dd56a8320fa","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:38:50.837853Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:19:45.604415Z","description":"","frontend_count":0,"id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","instances":[{"created_at":"2023-07-03T20:18:34.660790Z","id":"e8a2e103-7300-4792-bde4-4e241dc7a003","ip_address":"10.64.146.23","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:20:16.701268Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:19:48.205428Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:20 GMT + - Mon, 03 Jul 2023 20:20:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -465,7 +465,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37ce81bf-9847-414c-be28-22fa1e1e3bbb + - 45ddc02b-b44c-4980-b93a-aeba403d27cb status: 200 OK code: 200 duration: "" @@ -476,19 +476,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:38:48.281564Z","description":"","frontend_count":0,"id":"8705a921-a633-4252-ab04-3dd56a8320fa","instances":[{"created_at":"2023-06-29T13:37:34.405051Z","id":"d8e8a5a2-ddec-4410-a6b7-07558df385b3","ip_address":"10.70.78.67","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:39:19.443912Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"8705a921-a633-4252-ab04-3dd56a8320fa","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:38:50.837853Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:19:45.604415Z","description":"","frontend_count":0,"id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","instances":[{"created_at":"2023-07-03T20:18:34.660790Z","id":"e8a2e103-7300-4792-bde4-4e241dc7a003","ip_address":"10.64.146.23","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:20:16.701268Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:19:48.205428Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:20 GMT + - Mon, 03 Jul 2023 20:20:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -498,7 +498,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1cdc75e4-f9da-4a85-a3b5-6b602738a3ac + - 90dbba8d-0f20-442f-a6c7-e8e26c6120db status: 200 OK code: 200 duration: "" @@ -509,19 +509,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:20 GMT + - Mon, 03 Jul 2023 20:20:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -531,7 +531,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 716bd289-5d1d-48c4-8fd3-01667ecdf080 + - b2e8ad2d-6435-4d60-9b43-7a8d6fd3bd0c status: 200 OK code: 200 duration: "" @@ -542,19 +542,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/5348aa1e-eb86-43c8-b520-75b062ee1526 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/a50c2f67-f87c-4b55-884c-eb7ce720fe31 method: GET response: - body: '{"created_at":"2023-06-29T13:39:19.137219Z","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":null},"id":"5348aa1e-eb86-43c8-b520-75b062ee1526","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:38:48.281564Z","description":"","frontend_count":0,"id":"8705a921-a633-4252-ab04-3dd56a8320fa","instances":[{"created_at":"2023-06-29T13:37:34.405051Z","id":"d8e8a5a2-ddec-4410-a6b7-07558df385b3","ip_address":"10.70.78.67","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:39:19.443912Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"8705a921-a633-4252-ab04-3dd56a8320fa","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:38:50.837853Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource0","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:39:19.137219Z"}' + body: '{"created_at":"2023-07-03T20:20:16.390151Z","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":"a50c2f67-f87c-4b55-884c-eb7ce720fe31","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:19:45.604415Z","description":"","frontend_count":0,"id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","instances":[{"created_at":"2023-07-03T20:18:34.660790Z","id":"e8a2e103-7300-4792-bde4-4e241dc7a003","ip_address":"10.64.146.23","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:20:16.701268Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:19:48.205428Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource0","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:20:16.390151Z"}' headers: Content-Length: - - "1952" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:20 GMT + - Mon, 03 Jul 2023 20:20:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -564,7 +564,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75e7df0e-382c-4d32-a3fd-21923830b115 + - 2e5a7bee-105a-4516-9c52-64bcbae12672 status: 200 OK code: 200 duration: "" @@ -575,19 +575,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:38:48.281564Z","description":"","frontend_count":0,"id":"8705a921-a633-4252-ab04-3dd56a8320fa","instances":[{"created_at":"2023-06-29T13:37:34.405051Z","id":"d8e8a5a2-ddec-4410-a6b7-07558df385b3","ip_address":"10.70.78.67","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:39:19.443912Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"8705a921-a633-4252-ab04-3dd56a8320fa","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:38:50.837853Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:19:45.604415Z","description":"","frontend_count":0,"id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","instances":[{"created_at":"2023-07-03T20:18:34.660790Z","id":"e8a2e103-7300-4792-bde4-4e241dc7a003","ip_address":"10.64.146.23","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:20:16.701268Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:19:48.205428Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:20 GMT + - Mon, 03 Jul 2023 20:20:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -597,7 +597,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b733bb24-4b02-4ead-8340-ea876bde9ff7 + - f361be29-4e6b-40d8-8e01-33c45185b823 status: 200 OK code: 200 duration: "" @@ -608,19 +608,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"8705a921-a633-4252-ab04-3dd56a8320fa","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "319" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:20 GMT + - Mon, 03 Jul 2023 20:20:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -630,7 +630,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b57aee05-eb85-4bda-9960-9a53a81773bc + - 9efbb4b6-f9d6-4eda-bb14-ec0d86ed5435 status: 200 OK code: 200 duration: "" @@ -641,19 +641,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:38:48.281564Z","description":"","frontend_count":0,"id":"8705a921-a633-4252-ab04-3dd56a8320fa","instances":[{"created_at":"2023-06-29T13:37:34.405051Z","id":"d8e8a5a2-ddec-4410-a6b7-07558df385b3","ip_address":"10.70.78.67","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:39:19.443912Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"8705a921-a633-4252-ab04-3dd56a8320fa","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:38:50.837853Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:19:45.604415Z","description":"","frontend_count":0,"id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","instances":[{"created_at":"2023-07-03T20:18:34.660790Z","id":"e8a2e103-7300-4792-bde4-4e241dc7a003","ip_address":"10.64.146.23","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:20:16.701268Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:19:48.205428Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:20 GMT + - Mon, 03 Jul 2023 20:20:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -663,7 +663,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3079fb71-4ce0-4bfd-82b7-4ae9276ce235 + - 7b6fc587-2ef3-46fe-b92a-a98e44caed24 status: 200 OK code: 200 duration: "" @@ -674,19 +674,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:38:48.281564Z","description":"","frontend_count":0,"id":"8705a921-a633-4252-ab04-3dd56a8320fa","instances":[{"created_at":"2023-06-29T13:37:34.405051Z","id":"d8e8a5a2-ddec-4410-a6b7-07558df385b3","ip_address":"10.70.78.67","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:39:19.443912Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"8705a921-a633-4252-ab04-3dd56a8320fa","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:38:50.837853Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:19:45.604415Z","description":"","frontend_count":0,"id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","instances":[{"created_at":"2023-07-03T20:18:34.660790Z","id":"e8a2e103-7300-4792-bde4-4e241dc7a003","ip_address":"10.64.146.23","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:20:16.701268Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:19:48.205428Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:21 GMT + - Mon, 03 Jul 2023 20:20:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -696,7 +696,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ddb9764-eeb3-432a-89a7-0e46d85532cb + - 71c332f4-d3ad-4954-a24f-9b0a418181f4 status: 200 OK code: 200 duration: "" @@ -707,19 +707,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:21 GMT + - Mon, 03 Jul 2023 20:20:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -729,7 +729,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c15555a-2756-412d-acf9-9a97de574902 + - 335f89b9-5676-44a2-baa8-7c88be6003cf status: 200 OK code: 200 duration: "" @@ -740,19 +740,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/5348aa1e-eb86-43c8-b520-75b062ee1526 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/a50c2f67-f87c-4b55-884c-eb7ce720fe31 method: GET response: - body: '{"created_at":"2023-06-29T13:39:19.137219Z","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":null},"id":"5348aa1e-eb86-43c8-b520-75b062ee1526","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:38:48.281564Z","description":"","frontend_count":0,"id":"8705a921-a633-4252-ab04-3dd56a8320fa","instances":[{"created_at":"2023-06-29T13:37:34.405051Z","id":"d8e8a5a2-ddec-4410-a6b7-07558df385b3","ip_address":"10.70.78.67","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:39:19.443912Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"8705a921-a633-4252-ab04-3dd56a8320fa","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:38:50.837853Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource0","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:39:19.137219Z"}' + body: '{"created_at":"2023-07-03T20:20:16.390151Z","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":"a50c2f67-f87c-4b55-884c-eb7ce720fe31","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:19:45.604415Z","description":"","frontend_count":0,"id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","instances":[{"created_at":"2023-07-03T20:18:34.660790Z","id":"e8a2e103-7300-4792-bde4-4e241dc7a003","ip_address":"10.64.146.23","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:20:16.701268Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:19:48.205428Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource0","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:20:16.390151Z"}' headers: Content-Length: - - "1952" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:21 GMT + - Mon, 03 Jul 2023 20:20:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -762,7 +762,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b36b9f8-6823-4a7d-96cf-9e69ddea063e + - 085762f0-baa0-4820-a373-61c191ea4ec2 status: 200 OK code: 200 duration: "" @@ -773,19 +773,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:38:48.281564Z","description":"","frontend_count":0,"id":"8705a921-a633-4252-ab04-3dd56a8320fa","instances":[{"created_at":"2023-06-29T13:37:34.405051Z","id":"d8e8a5a2-ddec-4410-a6b7-07558df385b3","ip_address":"10.70.78.67","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:39:19.443912Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"8705a921-a633-4252-ab04-3dd56a8320fa","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:38:50.837853Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:19:45.604415Z","description":"","frontend_count":0,"id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","instances":[{"created_at":"2023-07-03T20:18:34.660790Z","id":"e8a2e103-7300-4792-bde4-4e241dc7a003","ip_address":"10.64.146.23","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:20:16.701268Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:19:48.205428Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:21 GMT + - Mon, 03 Jul 2023 20:20:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -795,7 +795,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 095845e5-0e7a-44a3-8575-f9dca7bc54c2 + - f80ed2d3-4f39-4f38-8df5-71e140449df6 status: 200 OK code: 200 duration: "" @@ -806,19 +806,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:38:48.281564Z","description":"","frontend_count":0,"id":"8705a921-a633-4252-ab04-3dd56a8320fa","instances":[{"created_at":"2023-06-29T13:37:34.405051Z","id":"d8e8a5a2-ddec-4410-a6b7-07558df385b3","ip_address":"10.70.78.67","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:39:19.443912Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"8705a921-a633-4252-ab04-3dd56a8320fa","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:38:50.837853Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:19:45.604415Z","description":"","frontend_count":0,"id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","instances":[{"created_at":"2023-07-03T20:18:34.660790Z","id":"e8a2e103-7300-4792-bde4-4e241dc7a003","ip_address":"10.64.146.23","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:20:16.701268Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:19:48.205428Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:21 GMT + - Mon, 03 Jul 2023 20:20:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -828,12 +828,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da393c89-9558-4f76-824d-063ff0184c1d + - b0e488ca-2b56-4f31-869d-26e0309192eb status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-backend-datasource1","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_max_retries":2,"check_send_proxy":false,"transient_check_delay":null,"check_delay":60000,"check_timeout":30000},"server_ip":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":null,"max_retries":3,"max_connections":null,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' + body: '{"name":"tf-backend-datasource1","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_max_retries":2,"check_send_proxy":false,"transient_check_delay":"0.500000000s","check_delay":60000,"check_timeout":30000},"server_ip":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":null,"max_retries":3,"max_connections":null,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' form: {} headers: Content-Type: @@ -841,19 +841,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa/backends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0/backends method: POST response: - body: '{"created_at":"2023-06-29T13:39:21.849725Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"79a704b7-89ba-44eb-9d23-dc94708e5f61","ignore_ssl_server_verify":false,"lb":{"backend_count":2,"created_at":"2023-06-29T13:38:48.281564Z","description":"","frontend_count":0,"id":"8705a921-a633-4252-ab04-3dd56a8320fa","instances":[{"created_at":"2023-06-29T13:37:34.405051Z","id":"d8e8a5a2-ddec-4410-a6b7-07558df385b3","ip_address":"10.70.78.67","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:39:21.898912078Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"8705a921-a633-4252-ab04-3dd56a8320fa","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:38:50.837853Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource1","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:39:21.849725Z"}' + body: '{"created_at":"2023-07-03T20:20:19.133479350Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"4e46a39a-c11d-4b38-b8db-867ddd9fea86","ignore_ssl_server_verify":false,"lb":{"backend_count":2,"created_at":"2023-07-03T20:19:45.604415Z","description":"","frontend_count":0,"id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","instances":[{"created_at":"2023-07-03T20:18:34.660790Z","id":"e8a2e103-7300-4792-bde4-4e241dc7a003","ip_address":"10.64.146.23","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:20:19.169729615Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:19:48.205428Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource1","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:20:19.133479350Z"}' headers: Content-Length: - - "1958" + - "1911" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:22 GMT + - Mon, 03 Jul 2023 20:20:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -863,7 +863,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d353309-006b-4ef6-ac93-e17454b4156c + - 727ef443-928f-4a4e-ba32-3ac84ce8dee8 status: 200 OK code: 200 duration: "" @@ -874,19 +874,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0 method: GET response: - body: '{"backend_count":2,"created_at":"2023-06-29T13:38:48.281564Z","description":"","frontend_count":0,"id":"8705a921-a633-4252-ab04-3dd56a8320fa","instances":[{"created_at":"2023-06-29T13:37:34.405051Z","id":"d8e8a5a2-ddec-4410-a6b7-07558df385b3","ip_address":"10.70.78.67","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:39:21.898912Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"8705a921-a633-4252-ab04-3dd56a8320fa","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:38:50.837853Z","zone":"fr-par-1"}' + body: '{"backend_count":2,"created_at":"2023-07-03T20:19:45.604415Z","description":"","frontend_count":0,"id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","instances":[{"created_at":"2023-07-03T20:18:34.660790Z","id":"e8a2e103-7300-4792-bde4-4e241dc7a003","ip_address":"10.64.146.23","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:20:19.169730Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:19:48.205428Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:22 GMT + - Mon, 03 Jul 2023 20:20:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -896,7 +896,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b0c45fc-946a-41e9-aa2e-ac9a16993961 + - 9379a644-79e4-48c0-b65c-cc4ea15f83ee status: 200 OK code: 200 duration: "" @@ -907,19 +907,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/79a704b7-89ba-44eb-9d23-dc94708e5f61 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/4e46a39a-c11d-4b38-b8db-867ddd9fea86 method: GET response: - body: '{"created_at":"2023-06-29T13:39:21.849725Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"79a704b7-89ba-44eb-9d23-dc94708e5f61","ignore_ssl_server_verify":false,"lb":{"backend_count":2,"created_at":"2023-06-29T13:38:48.281564Z","description":"","frontend_count":0,"id":"8705a921-a633-4252-ab04-3dd56a8320fa","instances":[{"created_at":"2023-06-29T13:37:34.405051Z","id":"d8e8a5a2-ddec-4410-a6b7-07558df385b3","ip_address":"10.70.78.67","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:39:21.898912Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"8705a921-a633-4252-ab04-3dd56a8320fa","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:38:50.837853Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource1","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:39:21.849725Z"}' + body: '{"created_at":"2023-07-03T20:20:19.133479Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"4e46a39a-c11d-4b38-b8db-867ddd9fea86","ignore_ssl_server_verify":false,"lb":{"backend_count":2,"created_at":"2023-07-03T20:19:45.604415Z","description":"","frontend_count":0,"id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","instances":[{"created_at":"2023-07-03T20:18:34.660790Z","id":"e8a2e103-7300-4792-bde4-4e241dc7a003","ip_address":"10.64.146.23","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:20:19.169730Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:19:48.205428Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource1","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:20:19.133479Z"}' headers: Content-Length: - - "1955" + - "1902" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:22 GMT + - Mon, 03 Jul 2023 20:20:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -929,7 +929,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b773368-2821-4d2f-9d3a-0af33b098cc1 + - b153dd63-1cb9-45a2-904a-1ae764aa0b49 status: 200 OK code: 200 duration: "" @@ -940,19 +940,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0 method: GET response: - body: '{"backend_count":2,"created_at":"2023-06-29T13:38:48.281564Z","description":"","frontend_count":0,"id":"8705a921-a633-4252-ab04-3dd56a8320fa","instances":[{"created_at":"2023-06-29T13:37:34.405051Z","id":"d8e8a5a2-ddec-4410-a6b7-07558df385b3","ip_address":"10.70.78.67","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:39:22.178746Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"8705a921-a633-4252-ab04-3dd56a8320fa","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:38:50.837853Z","zone":"fr-par-1"}' + body: '{"backend_count":2,"created_at":"2023-07-03T20:19:45.604415Z","description":"","frontend_count":0,"id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","instances":[{"created_at":"2023-07-03T20:18:34.660790Z","id":"e8a2e103-7300-4792-bde4-4e241dc7a003","ip_address":"10.64.146.23","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:20:19.425592Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:19:48.205428Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:22 GMT + - Mon, 03 Jul 2023 20:20:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -962,7 +962,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 410150f1-741a-4968-a531-e47abc9d16ef + - f640088f-29d6-414d-a715-eeb4cc6aa995 status: 200 OK code: 200 duration: "" @@ -973,19 +973,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa/backends?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0/backends?name=tf-backend-datasource&order_by=created_at_asc method: GET response: - body: '{"backends":[{"created_at":"2023-06-29T13:39:19.137219Z","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":null},"id":"5348aa1e-eb86-43c8-b520-75b062ee1526","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource0","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:39:19.137219Z"},{"created_at":"2023-06-29T13:39:21.849725Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"79a704b7-89ba-44eb-9d23-dc94708e5f61","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource1","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:39:21.849725Z"}],"total_count":2}' + body: '{"backends":[{"created_at":"2023-07-03T20:20:16.390151Z","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":"a50c2f67-f87c-4b55-884c-eb7ce720fe31","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource0","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:20:16.390151Z"},{"created_at":"2023-07-03T20:20:19.133479Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"4e46a39a-c11d-4b38-b8db-867ddd9fea86","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource1","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:20:19.133479Z"}],"total_count":2}' headers: Content-Length: - - "2599" + - "2507" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:22 GMT + - Mon, 03 Jul 2023 20:20:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -995,7 +995,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c42beb9f-9deb-4934-bad7-fb8f32c52481 + - 6d7362c9-bfac-4c1c-b5f8-968c737bd730 status: 200 OK code: 200 duration: "" @@ -1006,19 +1006,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa/backends?name=tf-backend-datasource&order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0/backends?order_by=created_at_asc method: GET response: - body: '{"backends":[{"created_at":"2023-06-29T13:39:19.137219Z","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":null},"id":"5348aa1e-eb86-43c8-b520-75b062ee1526","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource0","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:39:19.137219Z"},{"created_at":"2023-06-29T13:39:21.849725Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"79a704b7-89ba-44eb-9d23-dc94708e5f61","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource1","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:39:21.849725Z"}],"total_count":2}' + body: '{"backends":[{"created_at":"2023-07-03T20:20:16.390151Z","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":"a50c2f67-f87c-4b55-884c-eb7ce720fe31","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource0","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:20:16.390151Z"},{"created_at":"2023-07-03T20:20:19.133479Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"4e46a39a-c11d-4b38-b8db-867ddd9fea86","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource1","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:20:19.133479Z"}],"total_count":2}' headers: Content-Length: - - "2599" + - "2507" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:22 GMT + - Mon, 03 Jul 2023 20:20:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1028,7 +1028,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d04e473b-1dbb-499d-83e0-fe536b5b7b1d + - 9e76b711-edfb-4736-8f87-25208ba6c240 status: 200 OK code: 200 duration: "" @@ -1039,19 +1039,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa/backends?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0/backends?order_by=created_at_asc method: GET response: - body: '{"backends":[{"created_at":"2023-06-29T13:39:19.137219Z","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":null},"id":"5348aa1e-eb86-43c8-b520-75b062ee1526","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource0","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:39:19.137219Z"},{"created_at":"2023-06-29T13:39:21.849725Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"79a704b7-89ba-44eb-9d23-dc94708e5f61","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource1","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:39:21.849725Z"}],"total_count":2}' + body: '{"backends":[{"created_at":"2023-07-03T20:20:16.390151Z","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":"a50c2f67-f87c-4b55-884c-eb7ce720fe31","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource0","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:20:16.390151Z"},{"created_at":"2023-07-03T20:20:19.133479Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"4e46a39a-c11d-4b38-b8db-867ddd9fea86","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource1","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:20:19.133479Z"}],"total_count":2}' headers: Content-Length: - - "2599" + - "2507" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:22 GMT + - Mon, 03 Jul 2023 20:20:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1061,7 +1061,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a0759ac-46f1-4d5b-a704-3223a1fee6b9 + - c6610c57-b190-4181-9db4-f6f50885ba99 status: 200 OK code: 200 duration: "" @@ -1072,19 +1072,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa/backends?name=tf-backend-datasource&order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0/backends?name=tf-backend-datasource&order_by=created_at_asc method: GET response: - body: '{"backends":[{"created_at":"2023-06-29T13:39:19.137219Z","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":null},"id":"5348aa1e-eb86-43c8-b520-75b062ee1526","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource0","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:39:19.137219Z"},{"created_at":"2023-06-29T13:39:21.849725Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"79a704b7-89ba-44eb-9d23-dc94708e5f61","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource1","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:39:21.849725Z"}],"total_count":2}' + body: '{"backends":[{"created_at":"2023-07-03T20:20:16.390151Z","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":"a50c2f67-f87c-4b55-884c-eb7ce720fe31","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource0","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:20:16.390151Z"},{"created_at":"2023-07-03T20:20:19.133479Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"4e46a39a-c11d-4b38-b8db-867ddd9fea86","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource1","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:20:19.133479Z"}],"total_count":2}' headers: Content-Length: - - "2599" + - "2507" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:22 GMT + - Mon, 03 Jul 2023 20:20:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1094,7 +1094,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a42f473e-cea0-48a0-beea-7ed55a541349 + - aaa0a6c8-c2ed-4b88-9016-dba79b6cbdf8 status: 200 OK code: 200 duration: "" @@ -1105,19 +1105,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"8705a921-a633-4252-ab04-3dd56a8320fa","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "319" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:22 GMT + - Mon, 03 Jul 2023 20:20:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1127,7 +1127,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ea10708-1e4d-4cb9-bab0-a5987b34f0cc + - cc0e5699-26a5-4bbb-88f6-fec8544fadba status: 200 OK code: 200 duration: "" @@ -1138,19 +1138,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0 method: GET response: - body: '{"backend_count":2,"created_at":"2023-06-29T13:38:48.281564Z","description":"","frontend_count":0,"id":"8705a921-a633-4252-ab04-3dd56a8320fa","instances":[{"created_at":"2023-06-29T13:37:34.405051Z","id":"d8e8a5a2-ddec-4410-a6b7-07558df385b3","ip_address":"10.70.78.67","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:39:22.178746Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"8705a921-a633-4252-ab04-3dd56a8320fa","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:38:50.837853Z","zone":"fr-par-1"}' + body: '{"backend_count":2,"created_at":"2023-07-03T20:19:45.604415Z","description":"","frontend_count":0,"id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","instances":[{"created_at":"2023-07-03T20:18:34.660790Z","id":"e8a2e103-7300-4792-bde4-4e241dc7a003","ip_address":"10.64.146.23","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:20:19.425592Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:19:48.205428Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:22 GMT + - Mon, 03 Jul 2023 20:20:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1160,7 +1160,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93dd4b60-2a7e-4965-92ed-525b36eb324d + - 1cecf322-5940-4276-b7e9-96e8db788cf9 status: 200 OK code: 200 duration: "" @@ -1171,19 +1171,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0 method: GET response: - body: '{"backend_count":2,"created_at":"2023-06-29T13:38:48.281564Z","description":"","frontend_count":0,"id":"8705a921-a633-4252-ab04-3dd56a8320fa","instances":[{"created_at":"2023-06-29T13:37:34.405051Z","id":"d8e8a5a2-ddec-4410-a6b7-07558df385b3","ip_address":"10.70.78.67","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:39:22.178746Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"8705a921-a633-4252-ab04-3dd56a8320fa","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:38:50.837853Z","zone":"fr-par-1"}' + body: '{"backend_count":2,"created_at":"2023-07-03T20:19:45.604415Z","description":"","frontend_count":0,"id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","instances":[{"created_at":"2023-07-03T20:18:34.660790Z","id":"e8a2e103-7300-4792-bde4-4e241dc7a003","ip_address":"10.64.146.23","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:20:19.425592Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:19:48.205428Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:23 GMT + - Mon, 03 Jul 2023 20:20:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1193,7 +1193,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 39fb67ba-c736-4915-959f-3aedf4312ad9 + - b10edefa-71fb-4de3-8918-cd7edf7bad85 status: 200 OK code: 200 duration: "" @@ -1204,19 +1204,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:23 GMT + - Mon, 03 Jul 2023 20:20:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1226,7 +1226,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d780c157-dd11-498a-834c-aa19883ccf94 + - 842bd227-3331-413f-a9b0-25a549d58f4e status: 200 OK code: 200 duration: "" @@ -1237,19 +1237,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/5348aa1e-eb86-43c8-b520-75b062ee1526 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/a50c2f67-f87c-4b55-884c-eb7ce720fe31 method: GET response: - body: '{"created_at":"2023-06-29T13:39:19.137219Z","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":null},"id":"5348aa1e-eb86-43c8-b520-75b062ee1526","ignore_ssl_server_verify":false,"lb":{"backend_count":2,"created_at":"2023-06-29T13:38:48.281564Z","description":"","frontend_count":0,"id":"8705a921-a633-4252-ab04-3dd56a8320fa","instances":[{"created_at":"2023-06-29T13:37:34.405051Z","id":"d8e8a5a2-ddec-4410-a6b7-07558df385b3","ip_address":"10.70.78.67","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:39:22.178746Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"8705a921-a633-4252-ab04-3dd56a8320fa","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:38:50.837853Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource0","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:39:19.137219Z"}' + body: '{"created_at":"2023-07-03T20:20:16.390151Z","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":"a50c2f67-f87c-4b55-884c-eb7ce720fe31","ignore_ssl_server_verify":false,"lb":{"backend_count":2,"created_at":"2023-07-03T20:19:45.604415Z","description":"","frontend_count":0,"id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","instances":[{"created_at":"2023-07-03T20:18:34.660790Z","id":"e8a2e103-7300-4792-bde4-4e241dc7a003","ip_address":"10.64.146.23","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:20:19.425592Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:19:48.205428Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource0","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:20:16.390151Z"}' headers: Content-Length: - - "1952" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:23 GMT + - Mon, 03 Jul 2023 20:20:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1259,7 +1259,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54cd2ee3-66ce-4b5d-8efb-325800994e06 + - a64da188-24b9-4820-8657-b9fc9a6ea1dd status: 200 OK code: 200 duration: "" @@ -1270,19 +1270,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/79a704b7-89ba-44eb-9d23-dc94708e5f61 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/4e46a39a-c11d-4b38-b8db-867ddd9fea86 method: GET response: - body: '{"created_at":"2023-06-29T13:39:21.849725Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"79a704b7-89ba-44eb-9d23-dc94708e5f61","ignore_ssl_server_verify":false,"lb":{"backend_count":2,"created_at":"2023-06-29T13:38:48.281564Z","description":"","frontend_count":0,"id":"8705a921-a633-4252-ab04-3dd56a8320fa","instances":[{"created_at":"2023-06-29T13:37:34.405051Z","id":"d8e8a5a2-ddec-4410-a6b7-07558df385b3","ip_address":"10.70.78.67","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:39:22.178746Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"8705a921-a633-4252-ab04-3dd56a8320fa","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:38:50.837853Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource1","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:39:21.849725Z"}' + body: '{"created_at":"2023-07-03T20:20:19.133479Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"4e46a39a-c11d-4b38-b8db-867ddd9fea86","ignore_ssl_server_verify":false,"lb":{"backend_count":2,"created_at":"2023-07-03T20:19:45.604415Z","description":"","frontend_count":0,"id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","instances":[{"created_at":"2023-07-03T20:18:34.660790Z","id":"e8a2e103-7300-4792-bde4-4e241dc7a003","ip_address":"10.64.146.23","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:20:19.425592Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:19:48.205428Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource1","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:20:19.133479Z"}' headers: Content-Length: - - "1953" + - "1900" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:23 GMT + - Mon, 03 Jul 2023 20:20:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1292,7 +1292,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0be09a14-9c98-4690-a701-465fa60138c2 + - c9343e36-f430-438d-9a5c-c32205dbdcc4 status: 200 OK code: 200 duration: "" @@ -1303,19 +1303,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0 method: GET response: - body: '{"backend_count":2,"created_at":"2023-06-29T13:38:48.281564Z","description":"","frontend_count":0,"id":"8705a921-a633-4252-ab04-3dd56a8320fa","instances":[{"created_at":"2023-06-29T13:37:34.405051Z","id":"d8e8a5a2-ddec-4410-a6b7-07558df385b3","ip_address":"10.70.78.67","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:39:22.178746Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"8705a921-a633-4252-ab04-3dd56a8320fa","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:38:50.837853Z","zone":"fr-par-1"}' + body: '{"backend_count":2,"created_at":"2023-07-03T20:19:45.604415Z","description":"","frontend_count":0,"id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","instances":[{"created_at":"2023-07-03T20:18:34.660790Z","id":"e8a2e103-7300-4792-bde4-4e241dc7a003","ip_address":"10.64.146.23","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:20:19.425592Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:19:48.205428Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:23 GMT + - Mon, 03 Jul 2023 20:20:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1325,7 +1325,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 488e3209-9184-4a55-b4e3-47b400dad256 + - 94ceeceb-950b-4cde-a1d2-b5e6325464ea status: 200 OK code: 200 duration: "" @@ -1336,19 +1336,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0 method: GET response: - body: '{"backend_count":2,"created_at":"2023-06-29T13:38:48.281564Z","description":"","frontend_count":0,"id":"8705a921-a633-4252-ab04-3dd56a8320fa","instances":[{"created_at":"2023-06-29T13:37:34.405051Z","id":"d8e8a5a2-ddec-4410-a6b7-07558df385b3","ip_address":"10.70.78.67","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:39:22.178746Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"8705a921-a633-4252-ab04-3dd56a8320fa","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:38:50.837853Z","zone":"fr-par-1"}' + body: '{"backend_count":2,"created_at":"2023-07-03T20:19:45.604415Z","description":"","frontend_count":0,"id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","instances":[{"created_at":"2023-07-03T20:18:34.660790Z","id":"e8a2e103-7300-4792-bde4-4e241dc7a003","ip_address":"10.64.146.23","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:20:19.425592Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:19:48.205428Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:23 GMT + - Mon, 03 Jul 2023 20:20:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1358,7 +1358,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ecef8f1-1e72-4897-a101-e61effb5ab99 + - 9aaec23c-cf30-4e15-abb7-690d7cf3a6b7 status: 200 OK code: 200 duration: "" @@ -1369,19 +1369,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa/backends?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0/backends?order_by=created_at_asc method: GET response: - body: '{"backends":[{"created_at":"2023-06-29T13:39:19.137219Z","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":null},"id":"5348aa1e-eb86-43c8-b520-75b062ee1526","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource0","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:39:19.137219Z"},{"created_at":"2023-06-29T13:39:21.849725Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"79a704b7-89ba-44eb-9d23-dc94708e5f61","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource1","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:39:21.849725Z"}],"total_count":2}' + body: '{"backends":[{"created_at":"2023-07-03T20:20:16.390151Z","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":"a50c2f67-f87c-4b55-884c-eb7ce720fe31","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource0","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:20:16.390151Z"},{"created_at":"2023-07-03T20:20:19.133479Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"4e46a39a-c11d-4b38-b8db-867ddd9fea86","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource1","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:20:19.133479Z"}],"total_count":2}' headers: Content-Length: - - "2599" + - "2507" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:23 GMT + - Mon, 03 Jul 2023 20:20:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1391,7 +1391,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a5519106-4e47-4ec2-af04-6cc51e49d304 + - ab049b07-a512-455e-9662-28ae35bef4e8 status: 200 OK code: 200 duration: "" @@ -1402,19 +1402,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa/backends?name=tf-backend-datasource&order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0/backends?name=tf-backend-datasource&order_by=created_at_asc method: GET response: - body: '{"backends":[{"created_at":"2023-06-29T13:39:19.137219Z","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":null},"id":"5348aa1e-eb86-43c8-b520-75b062ee1526","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource0","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:39:19.137219Z"},{"created_at":"2023-06-29T13:39:21.849725Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"79a704b7-89ba-44eb-9d23-dc94708e5f61","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource1","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:39:21.849725Z"}],"total_count":2}' + body: '{"backends":[{"created_at":"2023-07-03T20:20:16.390151Z","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":"a50c2f67-f87c-4b55-884c-eb7ce720fe31","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource0","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:20:16.390151Z"},{"created_at":"2023-07-03T20:20:19.133479Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"4e46a39a-c11d-4b38-b8db-867ddd9fea86","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource1","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:20:19.133479Z"}],"total_count":2}' headers: Content-Length: - - "2599" + - "2507" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:23 GMT + - Mon, 03 Jul 2023 20:20:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1424,7 +1424,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48084347-0d17-4450-9ae5-1236bba8f626 + - 6722abbc-bbfc-4414-8bac-a3faeef417be status: 200 OK code: 200 duration: "" @@ -1435,19 +1435,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa/backends?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0/backends?order_by=created_at_asc method: GET response: - body: '{"backends":[{"created_at":"2023-06-29T13:39:19.137219Z","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":null},"id":"5348aa1e-eb86-43c8-b520-75b062ee1526","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource0","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:39:19.137219Z"},{"created_at":"2023-06-29T13:39:21.849725Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"79a704b7-89ba-44eb-9d23-dc94708e5f61","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource1","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:39:21.849725Z"}],"total_count":2}' + body: '{"backends":[{"created_at":"2023-07-03T20:20:16.390151Z","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":"a50c2f67-f87c-4b55-884c-eb7ce720fe31","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource0","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:20:16.390151Z"},{"created_at":"2023-07-03T20:20:19.133479Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"4e46a39a-c11d-4b38-b8db-867ddd9fea86","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource1","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:20:19.133479Z"}],"total_count":2}' headers: Content-Length: - - "2599" + - "2507" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:23 GMT + - Mon, 03 Jul 2023 20:20:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1457,7 +1457,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59e40b5b-bf38-404f-ba89-1e5c2d873a8b + - f51497c1-3aaf-4b90-8d55-84cb6f425b07 status: 200 OK code: 200 duration: "" @@ -1468,19 +1468,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa/backends?name=tf-backend-datasource&order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0/backends?name=tf-backend-datasource&order_by=created_at_asc method: GET response: - body: '{"backends":[{"created_at":"2023-06-29T13:39:19.137219Z","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":null},"id":"5348aa1e-eb86-43c8-b520-75b062ee1526","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource0","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:39:19.137219Z"},{"created_at":"2023-06-29T13:39:21.849725Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"79a704b7-89ba-44eb-9d23-dc94708e5f61","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource1","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:39:21.849725Z"}],"total_count":2}' + body: '{"backends":[{"created_at":"2023-07-03T20:20:16.390151Z","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":"a50c2f67-f87c-4b55-884c-eb7ce720fe31","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource0","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:20:16.390151Z"},{"created_at":"2023-07-03T20:20:19.133479Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"4e46a39a-c11d-4b38-b8db-867ddd9fea86","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-backend-datasource1","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:20:19.133479Z"}],"total_count":2}' headers: Content-Length: - - "2599" + - "2507" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:23 GMT + - Mon, 03 Jul 2023 20:20:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1490,7 +1490,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3dbafe3d-d0ba-426d-82de-f6be526a57ff + - 87b6118a-df1b-4d84-a960-0de510ae228c status: 200 OK code: 200 duration: "" @@ -1501,19 +1501,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0 method: GET response: - body: '{"backend_count":2,"created_at":"2023-06-29T13:38:48.281564Z","description":"","frontend_count":0,"id":"8705a921-a633-4252-ab04-3dd56a8320fa","instances":[{"created_at":"2023-06-29T13:37:34.405051Z","id":"d8e8a5a2-ddec-4410-a6b7-07558df385b3","ip_address":"10.70.78.67","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:39:22.178746Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"8705a921-a633-4252-ab04-3dd56a8320fa","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:38:50.837853Z","zone":"fr-par-1"}' + body: '{"backend_count":2,"created_at":"2023-07-03T20:19:45.604415Z","description":"","frontend_count":0,"id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","instances":[{"created_at":"2023-07-03T20:18:34.660790Z","id":"e8a2e103-7300-4792-bde4-4e241dc7a003","ip_address":"10.64.146.23","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:20:19.425592Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:19:48.205428Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:23 GMT + - Mon, 03 Jul 2023 20:20:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1523,7 +1523,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b43c6f9a-e53b-40aa-9e0f-05f52124bead + - 91ec15d0-bb3d-4171-9a3d-adb033cf2af1 status: 200 OK code: 200 duration: "" @@ -1534,19 +1534,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0 method: GET response: - body: '{"backend_count":2,"created_at":"2023-06-29T13:38:48.281564Z","description":"","frontend_count":0,"id":"8705a921-a633-4252-ab04-3dd56a8320fa","instances":[{"created_at":"2023-06-29T13:37:34.405051Z","id":"d8e8a5a2-ddec-4410-a6b7-07558df385b3","ip_address":"10.70.78.67","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:39:22.178746Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"8705a921-a633-4252-ab04-3dd56a8320fa","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:38:50.837853Z","zone":"fr-par-1"}' + body: '{"backend_count":2,"created_at":"2023-07-03T20:19:45.604415Z","description":"","frontend_count":0,"id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","instances":[{"created_at":"2023-07-03T20:18:34.660790Z","id":"e8a2e103-7300-4792-bde4-4e241dc7a003","ip_address":"10.64.146.23","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:20:19.425592Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:19:48.205428Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:23 GMT + - Mon, 03 Jul 2023 20:20:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1556,7 +1556,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c812d67-a389-40d6-8d2c-0585aef6c24b + - 4b1a9f50-19e5-4779-a2c0-4480353fcfe3 status: 200 OK code: 200 duration: "" @@ -1567,7 +1567,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/5348aa1e-eb86-43c8-b520-75b062ee1526 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/4e46a39a-c11d-4b38-b8db-867ddd9fea86 method: DELETE response: body: "" @@ -1577,7 +1577,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:24 GMT + - Mon, 03 Jul 2023 20:20:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1587,7 +1587,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74d6b1ec-da6a-47fa-b2fb-667049a33863 + - ae773185-d9a6-48c1-8ed9-f1392e6bf3c6 status: 204 No Content code: 204 duration: "" @@ -1598,7 +1598,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/79a704b7-89ba-44eb-9d23-dc94708e5f61 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/a50c2f67-f87c-4b55-884c-eb7ce720fe31 method: DELETE response: body: "" @@ -1608,7 +1608,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:24 GMT + - Mon, 03 Jul 2023 20:20:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1618,7 +1618,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ebb0655e-33ea-49a5-a49f-514910cf4750 + - 64dae13d-69e5-4250-a934-8002fe7352b8 status: 204 No Content code: 204 duration: "" @@ -1629,19 +1629,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:38:48.281564Z","description":"","frontend_count":0,"id":"8705a921-a633-4252-ab04-3dd56a8320fa","instances":[{"created_at":"2023-06-29T13:37:34.405051Z","id":"d8e8a5a2-ddec-4410-a6b7-07558df385b3","ip_address":"10.70.78.67","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:39:24.175559Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"8705a921-a633-4252-ab04-3dd56a8320fa","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:38:50.837853Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:19:45.604415Z","description":"","frontend_count":0,"id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","instances":[{"created_at":"2023-07-03T20:18:34.660790Z","id":"e8a2e103-7300-4792-bde4-4e241dc7a003","ip_address":"10.64.146.23","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:20:21.443081Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:19:48.205428Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:24 GMT + - Mon, 03 Jul 2023 20:20:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1651,7 +1651,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40a1a879-b0a2-4e60-bb09-ae3779ffd802 + - b18a2ca3-c011-4239-b094-276741de3293 status: 200 OK code: 200 duration: "" @@ -1662,19 +1662,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:38:48.281564Z","description":"","frontend_count":0,"id":"8705a921-a633-4252-ab04-3dd56a8320fa","instances":[{"created_at":"2023-06-29T13:37:34.405051Z","id":"d8e8a5a2-ddec-4410-a6b7-07558df385b3","ip_address":"10.70.78.67","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:39:24.175559Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"8705a921-a633-4252-ab04-3dd56a8320fa","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:38:50.837853Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:19:45.604415Z","description":"","frontend_count":0,"id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","instances":[{"created_at":"2023-07-03T20:18:34.660790Z","id":"e8a2e103-7300-4792-bde4-4e241dc7a003","ip_address":"10.64.146.23","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:20:21.443081Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:19:48.205428Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:24 GMT + - Mon, 03 Jul 2023 20:20:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1684,7 +1684,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84df9c5d-e560-459c-8b17-4e14ebef931d + - 9ec8f922-42b4-4b28-860c-5f825e54e381 status: 200 OK code: 200 duration: "" @@ -1695,19 +1695,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:38:48.281564Z","description":"","frontend_count":0,"id":"8705a921-a633-4252-ab04-3dd56a8320fa","instances":[{"created_at":"2023-06-29T13:37:34.405051Z","id":"d8e8a5a2-ddec-4410-a6b7-07558df385b3","ip_address":"10.70.78.67","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:39:24.414752Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"8705a921-a633-4252-ab04-3dd56a8320fa","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:38:50.837853Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:19:45.604415Z","description":"","frontend_count":0,"id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","instances":[{"created_at":"2023-07-03T20:18:34.660790Z","id":"e8a2e103-7300-4792-bde4-4e241dc7a003","ip_address":"10.64.146.23","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:20:21.743184Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:19:48.205428Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:24 GMT + - Mon, 03 Jul 2023 20:20:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1717,7 +1717,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d97f274-d3ca-42eb-92d0-8d79e88bb30f + - 622af12a-f6a2-47e2-aba4-543e4bc3cfc9 status: 200 OK code: 200 duration: "" @@ -1728,7 +1728,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa?release_ip=false + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0?release_ip=false method: DELETE response: body: "" @@ -1738,7 +1738,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:24 GMT + - Mon, 03 Jul 2023 20:20:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1748,7 +1748,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 663f46bf-ee9a-4459-8fa5-d48e561ec4b0 + - 8badf954-f0f6-4367-8d34-97af364e5659 status: 204 No Content code: 204 duration: "" @@ -1759,19 +1759,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:38:48.281564Z","description":"","frontend_count":0,"id":"8705a921-a633-4252-ab04-3dd56a8320fa","instances":[{"created_at":"2023-06-29T13:37:34.405051Z","id":"d8e8a5a2-ddec-4410-a6b7-07558df385b3","ip_address":"10.70.78.67","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:39:24.414752Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"8705a921-a633-4252-ab04-3dd56a8320fa","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:39:24.594443Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:19:45.604415Z","description":"","frontend_count":0,"id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","instances":[{"created_at":"2023-07-03T20:18:34.660790Z","id":"e8a2e103-7300-4792-bde4-4e241dc7a003","ip_address":"10.64.146.23","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:20:21.743184Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:20:21.948651Z","zone":"fr-par-1"}' headers: Content-Length: - - "1095" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:24 GMT + - Mon, 03 Jul 2023 20:20:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1781,7 +1781,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 234a02b9-3611-40ed-9a1d-e4aa8c3fe1ba + - ec3d00ec-b735-4f9b-b337-b433fc45bebe status: 200 OK code: 200 duration: "" @@ -1792,7 +1792,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0 method: GET response: body: '{"message":"lbs not Found"}' @@ -1804,7 +1804,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:54 GMT + - Mon, 03 Jul 2023 20:20:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1814,7 +1814,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b6288b2-6b00-4266-9df3-a601f0c977af + - c23668ea-d6ff-45e5-a0f9-b6c988524d3f status: 404 Not Found code: 404 duration: "" @@ -1825,7 +1825,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0 method: GET response: body: '{"message":"lbs not Found"}' @@ -1837,7 +1837,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:54 GMT + - Mon, 03 Jul 2023 20:20:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1847,7 +1847,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e4dcb7a-e510-489c-a349-e588fdd749e6 + - d41d9d89-bfc2-4d08-812b-4cce25322146 status: 404 Not Found code: 404 duration: "" @@ -1858,19 +1858,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "285" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:54 GMT + - Mon, 03 Jul 2023 20:20:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1880,7 +1880,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4623b190-0f33-4545-b1fb-e4ac1251c23a + - 2cd19d71-55b7-45a6-afd7-413c32119384 status: 200 OK code: 200 duration: "" @@ -1891,7 +1891,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: DELETE response: body: "" @@ -1901,7 +1901,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:55 GMT + - Mon, 03 Jul 2023 20:20:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1911,7 +1911,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 266a1ccb-7397-4aa2-97e9-c104f6d906c1 + - 6b08a6c3-f290-4cf5-87fe-2101437883aa status: 204 No Content code: 204 duration: "" @@ -1922,7 +1922,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8705a921-a633-4252-ab04-3dd56a8320fa + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fa21e7ee-8b10-4bbf-8fa7-a7b90c4083c0 method: GET response: body: '{"message":"lbs not Found"}' @@ -1934,7 +1934,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:39:55 GMT + - Mon, 03 Jul 2023 20:20:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1944,7 +1944,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0dadd261-5f4e-4651-b7cb-964ff8959090 + - 034e37d6-bf00-48f0-be34-eb386e7986b3 status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/data-source-lb-frontend-basic.cassette.yaml b/scaleway/testdata/data-source-lb-frontend-basic.cassette.yaml index 1860e45385..dc441cc696 100644 --- a/scaleway/testdata/data-source-lb-frontend-basic.cassette.yaml +++ b/scaleway/testdata/data-source-lb-frontend-basic.cassette.yaml @@ -13,16 +13,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips method: POST response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "285" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:18 GMT + - Mon, 03 Jul 2023 20:17:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -32,7 +32,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7e31304-0e5b-4de3-9492-03f2e46ba90b + - 0eec0d7f-f7e7-4b5c-958f-c902b75ec9b3 status: 200 OK code: 200 duration: "" @@ -43,19 +43,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "285" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:18 GMT + - Mon, 03 Jul 2023 20:17:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -65,12 +65,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9ae2ec3-c294-48f4-99e1-109b92a66b20 + - 0d1c56d3-bb0e-4247-84e1-8c15798c8733 status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-lb","description":"","ip_id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","assign_flexible_ip":null,"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":"86df9ff8-7a77-492d-9b03-4f6205127499","assign_flexible_ip":null,"tags":null,"type":"lb-s","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' form: {} headers: Content-Type: @@ -81,16 +81,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs method: POST response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:36:18.316143183Z","description":"","frontend_count":0,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:18.316143183Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:17:15.747817851Z","description":"","frontend_count":0,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:15.747817851Z","zone":"fr-par-1"}' headers: Content-Length: - - "884" + - "862" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:18 GMT + - Mon, 03 Jul 2023 20:17:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -100,7 +100,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a6f301d-517d-4c02-afc7-4c00306f0196 + - d91008b5-1faf-41d7-bdac-b72b98e326cc status: 200 OK code: 200 duration: "" @@ -111,19 +111,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/50d28ba0-2414-41f3-93d0-ca0da99a20ba + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/753f2bdc-008a-4738-99dd-4bb85d888352 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":0,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:18.316143Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":0,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[{"created_at":"2023-07-03T10:22:13.530827Z","id":"5714e092-f0bd-48a5-b267-344688931c4e","ip_address":"10.74.78.103","region":"fr-par","status":"unknown","updated_at":"2023-07-03T20:17:15.965211Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:15.984344Z","zone":"fr-par-1"}' headers: Content-Length: - - "878" + - "1069" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:18 GMT + - Mon, 03 Jul 2023 20:17:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -133,7 +133,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad172ca9-4cf2-448b-9105-1093f76a7a82 + - 5f648601-4f53-4e7f-bb40-a169510ba4ac status: 200 OK code: 200 duration: "" @@ -144,19 +144,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/50d28ba0-2414-41f3-93d0-ca0da99a20ba + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/753f2bdc-008a-4738-99dd-4bb85d888352 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":0,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[{"created_at":"2023-06-29T13:31:04.415589Z","id":"b537295a-a1e2-40c7-a388-c2c77dc74a2d","ip_address":"10.76.76.5","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:36:19.390476Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":0,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[{"created_at":"2023-07-03T10:22:13.530827Z","id":"5714e092-f0bd-48a5-b267-344688931c4e","ip_address":"10.74.78.103","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:17:17.025117Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"}' headers: Content-Length: - - "1090" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:48 GMT + - Mon, 03 Jul 2023 20:17:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -166,7 +166,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4aa34c15-5009-42af-a080-db3c64a10ba1 + - d38b755f-d4f0-46e3-8fd9-5f492c711d30 status: 200 OK code: 200 duration: "" @@ -177,19 +177,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/50d28ba0-2414-41f3-93d0-ca0da99a20ba + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/753f2bdc-008a-4738-99dd-4bb85d888352 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":0,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[{"created_at":"2023-06-29T13:31:04.415589Z","id":"b537295a-a1e2-40c7-a388-c2c77dc74a2d","ip_address":"10.76.76.5","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:36:19.390476Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":0,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[{"created_at":"2023-07-03T10:22:13.530827Z","id":"5714e092-f0bd-48a5-b267-344688931c4e","ip_address":"10.74.78.103","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:17:17.025117Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"}' headers: Content-Length: - - "1090" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:48 GMT + - Mon, 03 Jul 2023 20:17:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -199,7 +199,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f2dc3f4-f40b-4376-9415-3bc23058f671 + - 0408a8cb-acbf-46ca-bfb3-8ab4253ccbca status: 200 OK code: 200 duration: "" @@ -210,19 +210,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/50d28ba0-2414-41f3-93d0-ca0da99a20ba/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/753f2bdc-008a-4738-99dd-4bb85d888352/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:48 GMT + - Mon, 03 Jul 2023 20:17:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -232,7 +232,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e02adf7d-ccfb-4ffb-932d-991229c497ef + - 95ba6146-22f4-46b2-a544-6dc3d6914e89 status: 200 OK code: 200 duration: "" @@ -243,19 +243,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/50d28ba0-2414-41f3-93d0-ca0da99a20ba + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/753f2bdc-008a-4738-99dd-4bb85d888352 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":0,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[{"created_at":"2023-06-29T13:31:04.415589Z","id":"b537295a-a1e2-40c7-a388-c2c77dc74a2d","ip_address":"10.76.76.5","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:36:19.390476Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":0,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[{"created_at":"2023-07-03T10:22:13.530827Z","id":"5714e092-f0bd-48a5-b267-344688931c4e","ip_address":"10.74.78.103","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:17:17.025117Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"}' headers: Content-Length: - - "1090" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:48 GMT + - Mon, 03 Jul 2023 20:17:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -265,12 +265,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8999b5e4-69fb-40e7-8159-c1567cbd3905 + - 5a9ec7cd-fa81-4201-9df4-2f4853582ee4 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-bkd-sweet-benz","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":null,"check_delay":60000,"check_timeout":30000},"server_ip":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":null,"max_retries":3,"max_connections":null,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' + body: '{"name":"tf-lb-bkd-quirky-cori","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":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":null,"max_retries":3,"max_connections":null,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' form: {} headers: Content-Type: @@ -278,19 +278,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/50d28ba0-2414-41f3-93d0-ca0da99a20ba/backends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/753f2bdc-008a-4738-99dd-4bb85d888352/backends method: POST response: - body: '{"created_at":"2023-06-29T13:36:49.026177849Z","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":null},"id":"c37b8d34-4793-49ad-9ec4-210f5965639e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":0,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[{"created_at":"2023-06-29T13:31:04.415589Z","id":"b537295a-a1e2-40c7-a388-c2c77dc74a2d","ip_address":"10.76.76.5","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:36:49.074127686Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sweet-benz","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:36:49.026177849Z"}' + body: '{"created_at":"2023-07-03T20:17:46.597662456Z","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":"ab36bd9d-548b-4d87-8fb1-f45110b2a5a2","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":0,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[{"created_at":"2023-07-03T10:22:13.530827Z","id":"5714e092-f0bd-48a5-b267-344688931c4e","ip_address":"10.74.78.103","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:17:46.653270473Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-cori","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:17:46.597662456Z"}' headers: Content-Length: - - "1960" + - "1909" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:49 GMT + - Mon, 03 Jul 2023 20:17:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -300,7 +300,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4acdfda6-54d6-4427-bf12-e70090505c7b + - dfdabae7-d4ae-4c3d-b937-f21df1b8caff status: 200 OK code: 200 duration: "" @@ -311,19 +311,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/50d28ba0-2414-41f3-93d0-ca0da99a20ba + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/753f2bdc-008a-4738-99dd-4bb85d888352 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":0,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[{"created_at":"2023-06-29T13:31:04.415589Z","id":"b537295a-a1e2-40c7-a388-c2c77dc74a2d","ip_address":"10.76.76.5","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:36:49.074128Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":0,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[{"created_at":"2023-07-03T10:22:13.530827Z","id":"5714e092-f0bd-48a5-b267-344688931c4e","ip_address":"10.74.78.103","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:17:46.653270Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"}' headers: Content-Length: - - "1092" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:49 GMT + - Mon, 03 Jul 2023 20:17:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -333,7 +333,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 164d0336-d7ea-4337-bc55-d22e31f3e259 + - 82ce4ab9-f5ee-4cab-80d3-a2031b1184f5 status: 200 OK code: 200 duration: "" @@ -344,19 +344,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/c37b8d34-4793-49ad-9ec4-210f5965639e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/ab36bd9d-548b-4d87-8fb1-f45110b2a5a2 method: GET response: - body: '{"created_at":"2023-06-29T13:36:49.026178Z","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":null},"id":"c37b8d34-4793-49ad-9ec4-210f5965639e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":0,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[{"created_at":"2023-06-29T13:31:04.415589Z","id":"b537295a-a1e2-40c7-a388-c2c77dc74a2d","ip_address":"10.76.76.5","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:36:49.074128Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sweet-benz","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:36:49.026178Z"}' + body: '{"created_at":"2023-07-03T20:17:46.597662Z","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":"ab36bd9d-548b-4d87-8fb1-f45110b2a5a2","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":0,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[{"created_at":"2023-07-03T10:22:13.530827Z","id":"5714e092-f0bd-48a5-b267-344688931c4e","ip_address":"10.74.78.103","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:17:46.899623Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-cori","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:17:46.597662Z"}' headers: Content-Length: - - "1951" + - "1898" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:49 GMT + - Mon, 03 Jul 2023 20:17:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -366,7 +366,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 602c1a94-4347-4914-88ba-84d38c6ef876 + - e17b3aad-f647-4cdf-8df4-0d8bbd3255f1 status: 200 OK code: 200 duration: "" @@ -377,19 +377,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/50d28ba0-2414-41f3-93d0-ca0da99a20ba + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/753f2bdc-008a-4738-99dd-4bb85d888352 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":0,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[{"created_at":"2023-06-29T13:31:04.415589Z","id":"b537295a-a1e2-40c7-a388-c2c77dc74a2d","ip_address":"10.76.76.5","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:36:49.324169Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":0,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[{"created_at":"2023-07-03T10:22:13.530827Z","id":"5714e092-f0bd-48a5-b267-344688931c4e","ip_address":"10.74.78.103","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:17:46.899623Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"}' headers: Content-Length: - - "1090" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:49 GMT + - Mon, 03 Jul 2023 20:17:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -399,7 +399,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5cf6927-aa24-497b-8959-8f1297f3e8cf + - 1a756cb4-57dc-47e0-b24a-b3a922b4d4d6 status: 200 OK code: 200 duration: "" @@ -410,19 +410,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/50d28ba0-2414-41f3-93d0-ca0da99a20ba + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/753f2bdc-008a-4738-99dd-4bb85d888352 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":0,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[{"created_at":"2023-06-29T13:31:04.415589Z","id":"b537295a-a1e2-40c7-a388-c2c77dc74a2d","ip_address":"10.76.76.5","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:36:49.324169Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":0,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[{"created_at":"2023-07-03T10:22:13.530827Z","id":"5714e092-f0bd-48a5-b267-344688931c4e","ip_address":"10.74.78.103","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:17:46.899623Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"}' headers: Content-Length: - - "1090" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:49 GMT + - Mon, 03 Jul 2023 20:17:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -432,12 +432,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be0b794c-2bd6-4c81-bada-351c1d0f3cd8 + - dec56326-d8a7-4ce9-8c53-41d55e79cd83 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-frt-recursing-kepler","inbound_port":80,"backend_id":"c37b8d34-4793-49ad-9ec4-210f5965639e","certificate_ids":null,"enable_http3":false,"timeout_client":null}' + body: '{"name":"tf-lb-frt-trusting-knuth","inbound_port":80,"backend_id":"ab36bd9d-548b-4d87-8fb1-f45110b2a5a2","certificate_ids":null,"enable_http3":false,"timeout_client":null}' form: {} headers: Content-Type: @@ -445,19 +445,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/50d28ba0-2414-41f3-93d0-ca0da99a20ba/frontends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/753f2bdc-008a-4738-99dd-4bb85d888352/frontends method: POST response: - body: '{"backend":{"created_at":"2023-06-29T13:36:49.026178Z","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":null},"id":"c37b8d34-4793-49ad-9ec4-210f5965639e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":1,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sweet-benz","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:36:49.026178Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:36:49.719674Z","enable_http3":false,"id":"d2c1877f-b317-4010-918b-44c652be48da","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":1,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[{"created_at":"2023-06-29T13:31:04.415589Z","id":"b537295a-a1e2-40c7-a388-c2c77dc74a2d","ip_address":"10.76.76.5","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:36:49.800018733Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"},"name":"tf-lb-frt-recursing-kepler","timeout_client":null,"updated_at":"2023-06-29T13:36:49.719674Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:17:46.597662Z","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":"ab36bd9d-548b-4d87-8fb1-f45110b2a5a2","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":1,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-cori","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:17:46.597662Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:17:47.355362Z","enable_http3":false,"id":"42173ab6-34a9-4638-b99b-055a13d65a42","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":1,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[{"created_at":"2023-07-03T10:22:13.530827Z","id":"5714e092-f0bd-48a5-b267-344688931c4e","ip_address":"10.74.78.103","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:17:47.417254777Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"},"name":"tf-lb-frt-trusting-knuth","timeout_client":null,"updated_at":"2023-07-03T20:17:47.355362Z"}' headers: Content-Length: - - "3123" + - "3038" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:49 GMT + - Mon, 03 Jul 2023 20:17:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -467,7 +467,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32bf0b6a-9f6c-4912-a2b9-6b0141d5c3ec + - 1a68e67d-95e9-44ed-884d-535071eb335e status: 200 OK code: 200 duration: "" @@ -478,19 +478,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/50d28ba0-2414-41f3-93d0-ca0da99a20ba + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/753f2bdc-008a-4738-99dd-4bb85d888352 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":1,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[{"created_at":"2023-06-29T13:31:04.415589Z","id":"b537295a-a1e2-40c7-a388-c2c77dc74a2d","ip_address":"10.76.76.5","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:36:49.800019Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":1,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[{"created_at":"2023-07-03T10:22:13.530827Z","id":"5714e092-f0bd-48a5-b267-344688931c4e","ip_address":"10.74.78.103","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:17:47.417255Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"}' headers: Content-Length: - - "1092" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:50 GMT + - Mon, 03 Jul 2023 20:17:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -500,12 +500,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e39bb831-6460-4e33-88e9-91100df43d9e + - 4a9ad9c4-30a3-425e-a2c4-5d7a5d278c89 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-frt-sweet-wilbur","inbound_port":80,"backend_id":"c37b8d34-4793-49ad-9ec4-210f5965639e","certificate_ids":null,"enable_http3":false,"timeout_client":null}' + body: '{"name":"tf-lb-frt-zealous-kapitsa","inbound_port":80,"backend_id":"ab36bd9d-548b-4d87-8fb1-f45110b2a5a2","certificate_ids":null,"enable_http3":false,"timeout_client":null}' form: {} headers: Content-Type: @@ -513,19 +513,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/d2c1877f-b317-4010-918b-44c652be48da + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/42173ab6-34a9-4638-b99b-055a13d65a42 method: PUT response: - body: '{"backend":{"created_at":"2023-06-29T13:36:49.026178Z","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":null},"id":"c37b8d34-4793-49ad-9ec4-210f5965639e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":1,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sweet-benz","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:36:49.026178Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:36:49.719674Z","enable_http3":false,"id":"d2c1877f-b317-4010-918b-44c652be48da","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":1,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[{"created_at":"2023-06-29T13:31:04.415589Z","id":"b537295a-a1e2-40c7-a388-c2c77dc74a2d","ip_address":"10.76.76.5","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:36:50.363409024Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"},"name":"tf-lb-frt-sweet-wilbur","timeout_client":null,"updated_at":"2023-06-29T13:36:50.318549226Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:17:46.597662Z","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":"ab36bd9d-548b-4d87-8fb1-f45110b2a5a2","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":1,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-cori","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:17:46.597662Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:17:47.355362Z","enable_http3":false,"id":"42173ab6-34a9-4638-b99b-055a13d65a42","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":1,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[{"created_at":"2023-07-03T10:22:13.530827Z","id":"5714e092-f0bd-48a5-b267-344688931c4e","ip_address":"10.74.78.103","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:17:47.860734964Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"},"name":"tf-lb-frt-zealous-kapitsa","timeout_client":null,"updated_at":"2023-07-03T20:17:47.830791939Z"}' headers: Content-Length: - - "3122" + - "3042" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:50 GMT + - Mon, 03 Jul 2023 20:17:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -535,7 +535,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56490a70-804d-4db1-8972-4f7bdf8ab8d7 + - 02fc9b19-f650-4683-80bb-03e10566c0a1 status: 200 OK code: 200 duration: "" @@ -546,19 +546,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/d2c1877f-b317-4010-918b-44c652be48da/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/42173ab6-34a9-4638-b99b-055a13d65a42/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:50 GMT + - Mon, 03 Jul 2023 20:17:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -568,7 +568,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34a3f363-4d64-4908-ab66-486702d0af90 + - ef9922dc-72a5-4c57-ad3a-fb84525a6e8d status: 200 OK code: 200 duration: "" @@ -579,19 +579,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/d2c1877f-b317-4010-918b-44c652be48da + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/42173ab6-34a9-4638-b99b-055a13d65a42 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:36:49.026178Z","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":null},"id":"c37b8d34-4793-49ad-9ec4-210f5965639e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":1,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sweet-benz","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:36:49.026178Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:36:49.719674Z","enable_http3":false,"id":"d2c1877f-b317-4010-918b-44c652be48da","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":1,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"},"name":"tf-lb-frt-sweet-wilbur","timeout_client":null,"updated_at":"2023-06-29T13:36:50.318549Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:17:46.597662Z","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":"ab36bd9d-548b-4d87-8fb1-f45110b2a5a2","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":1,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-cori","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:17:46.597662Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:17:47.355362Z","enable_http3":false,"id":"42173ab6-34a9-4638-b99b-055a13d65a42","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":1,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"},"name":"tf-lb-frt-zealous-kapitsa","timeout_client":null,"updated_at":"2023-07-03T20:17:47.830792Z"}' headers: Content-Length: - - "2898" + - "2822" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:50 GMT + - Mon, 03 Jul 2023 20:17:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -601,7 +601,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9398212b-83ed-4ebb-bad8-5802c47a0985 + - b17e414f-873c-46b4-b64a-9ddf2117e9ea status: 200 OK code: 200 duration: "" @@ -612,19 +612,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/d2c1877f-b317-4010-918b-44c652be48da/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/42173ab6-34a9-4638-b99b-055a13d65a42/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:50 GMT + - Mon, 03 Jul 2023 20:17:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -634,7 +634,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c68ce7d-069f-4bdd-8e1d-c9f3056b0aa3 + - f38a4b24-89d6-4f3f-ac3e-577085cda300 status: 200 OK code: 200 duration: "" @@ -645,19 +645,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/d2c1877f-b317-4010-918b-44c652be48da + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/753f2bdc-008a-4738-99dd-4bb85d888352/frontends?name=tf-lb-frt-zealous-kapitsa&order_by=created_at_asc method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:36:49.026178Z","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":null},"id":"c37b8d34-4793-49ad-9ec4-210f5965639e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":1,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sweet-benz","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:36:49.026178Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:36:49.719674Z","enable_http3":false,"id":"d2c1877f-b317-4010-918b-44c652be48da","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":1,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"},"name":"tf-lb-frt-sweet-wilbur","timeout_client":null,"updated_at":"2023-06-29T13:36:50.318549Z"}' + body: '{"frontends":[{"backend":{"created_at":"2023-07-03T20:17:46.597662Z","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":"ab36bd9d-548b-4d87-8fb1-f45110b2a5a2","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-cori","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:17:46.597662Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:17:47.355362Z","enable_http3":false,"id":"42173ab6-34a9-4638-b99b-055a13d65a42","inbound_port":80,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-lb-frt-zealous-kapitsa","timeout_client":null,"updated_at":"2023-07-03T20:17:47.830792Z"}],"total_count":1}' headers: Content-Length: - - "2898" + - "1954" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:50 GMT + - Mon, 03 Jul 2023 20:17:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -667,7 +667,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4d7c680-98de-4459-96f2-72d24bc6b24d + - b0ffb0cb-5d19-4fbe-b413-75cba6b104db status: 200 OK code: 200 duration: "" @@ -678,19 +678,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/50d28ba0-2414-41f3-93d0-ca0da99a20ba/frontends?name=tf-lb-frt-sweet-wilbur&order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/42173ab6-34a9-4638-b99b-055a13d65a42 method: GET response: - body: '{"frontends":[{"backend":{"created_at":"2023-06-29T13:36:49.026178Z","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":null},"id":"c37b8d34-4793-49ad-9ec4-210f5965639e","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sweet-benz","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:36:49.026178Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:36:49.719674Z","enable_http3":false,"id":"d2c1877f-b317-4010-918b-44c652be48da","inbound_port":80,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-lb-frt-sweet-wilbur","timeout_client":null,"updated_at":"2023-06-29T13:36:50.318549Z"}],"total_count":1}' + body: '{"backend":{"created_at":"2023-07-03T20:17:46.597662Z","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":"ab36bd9d-548b-4d87-8fb1-f45110b2a5a2","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":1,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-cori","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:17:46.597662Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:17:47.355362Z","enable_http3":false,"id":"42173ab6-34a9-4638-b99b-055a13d65a42","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":1,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"},"name":"tf-lb-frt-zealous-kapitsa","timeout_client":null,"updated_at":"2023-07-03T20:17:47.830792Z"}' headers: Content-Length: - - "2025" + - "2822" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:50 GMT + - Mon, 03 Jul 2023 20:17:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -700,7 +700,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 89f34fdb-edde-45fc-9f7d-daf1c6b9d78f + - 60cf13ce-3e87-4266-ac2a-64c3f38f0f28 status: 200 OK code: 200 duration: "" @@ -711,19 +711,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/d2c1877f-b317-4010-918b-44c652be48da + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/42173ab6-34a9-4638-b99b-055a13d65a42 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:36:49.026178Z","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":null},"id":"c37b8d34-4793-49ad-9ec4-210f5965639e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":1,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sweet-benz","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:36:49.026178Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:36:49.719674Z","enable_http3":false,"id":"d2c1877f-b317-4010-918b-44c652be48da","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":1,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"},"name":"tf-lb-frt-sweet-wilbur","timeout_client":null,"updated_at":"2023-06-29T13:36:50.318549Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:17:46.597662Z","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":"ab36bd9d-548b-4d87-8fb1-f45110b2a5a2","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":1,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-cori","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:17:46.597662Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:17:47.355362Z","enable_http3":false,"id":"42173ab6-34a9-4638-b99b-055a13d65a42","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":1,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"},"name":"tf-lb-frt-zealous-kapitsa","timeout_client":null,"updated_at":"2023-07-03T20:17:47.830792Z"}' headers: Content-Length: - - "2898" + - "2822" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:51 GMT + - Mon, 03 Jul 2023 20:17:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -733,7 +733,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42620bf5-c079-44c5-a9b9-3355bc6a8d25 + - 46ad8e0a-4dbc-4b2a-9b11-bc5bde0d4bd9 status: 200 OK code: 200 duration: "" @@ -744,19 +744,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/d2c1877f-b317-4010-918b-44c652be48da/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/42173ab6-34a9-4638-b99b-055a13d65a42/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:51 GMT + - Mon, 03 Jul 2023 20:17:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -766,7 +766,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29b95681-90fa-42d8-8361-a57352a8a48c + - a80a3815-7056-43ba-828e-9529a6db229e status: 200 OK code: 200 duration: "" @@ -777,19 +777,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/d2c1877f-b317-4010-918b-44c652be48da/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/42173ab6-34a9-4638-b99b-055a13d65a42/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:51 GMT + - Mon, 03 Jul 2023 20:17:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -799,7 +799,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53e1fd0b-6ded-484b-b502-97e6fb8b86ae + - 041c1738-35d4-4686-8a42-4995e39254e5 status: 200 OK code: 200 duration: "" @@ -810,19 +810,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/50d28ba0-2414-41f3-93d0-ca0da99a20ba/frontends?name=tf-lb-frt-sweet-wilbur&order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/753f2bdc-008a-4738-99dd-4bb85d888352/frontends?name=tf-lb-frt-zealous-kapitsa&order_by=created_at_asc method: GET response: - body: '{"frontends":[{"backend":{"created_at":"2023-06-29T13:36:49.026178Z","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":null},"id":"c37b8d34-4793-49ad-9ec4-210f5965639e","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sweet-benz","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:36:49.026178Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:36:49.719674Z","enable_http3":false,"id":"d2c1877f-b317-4010-918b-44c652be48da","inbound_port":80,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-lb-frt-sweet-wilbur","timeout_client":null,"updated_at":"2023-06-29T13:36:50.318549Z"}],"total_count":1}' + body: '{"frontends":[{"backend":{"created_at":"2023-07-03T20:17:46.597662Z","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":"ab36bd9d-548b-4d87-8fb1-f45110b2a5a2","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-cori","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:17:46.597662Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:17:47.355362Z","enable_http3":false,"id":"42173ab6-34a9-4638-b99b-055a13d65a42","inbound_port":80,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-lb-frt-zealous-kapitsa","timeout_client":null,"updated_at":"2023-07-03T20:17:47.830792Z"}],"total_count":1}' headers: Content-Length: - - "2025" + - "1954" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:51 GMT + - Mon, 03 Jul 2023 20:17:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -832,7 +832,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4db41a1a-603a-4a92-b674-86d3bb598809 + - 55965fda-c847-42e3-9900-e9515adf55e2 status: 200 OK code: 200 duration: "" @@ -843,19 +843,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/d2c1877f-b317-4010-918b-44c652be48da + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/42173ab6-34a9-4638-b99b-055a13d65a42 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:36:49.026178Z","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":null},"id":"c37b8d34-4793-49ad-9ec4-210f5965639e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":1,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sweet-benz","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:36:49.026178Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:36:49.719674Z","enable_http3":false,"id":"d2c1877f-b317-4010-918b-44c652be48da","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":1,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"},"name":"tf-lb-frt-sweet-wilbur","timeout_client":null,"updated_at":"2023-06-29T13:36:50.318549Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:17:46.597662Z","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":"ab36bd9d-548b-4d87-8fb1-f45110b2a5a2","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":1,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-cori","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:17:46.597662Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:17:47.355362Z","enable_http3":false,"id":"42173ab6-34a9-4638-b99b-055a13d65a42","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":1,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"},"name":"tf-lb-frt-zealous-kapitsa","timeout_client":null,"updated_at":"2023-07-03T20:17:47.830792Z"}' headers: Content-Length: - - "2898" + - "2822" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:51 GMT + - Mon, 03 Jul 2023 20:17:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -865,7 +865,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 938878e2-f5ed-4eed-9614-eed71142d7e4 + - 2cf6b160-af6a-442f-818f-107cf724b943 status: 200 OK code: 200 duration: "" @@ -876,19 +876,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/d2c1877f-b317-4010-918b-44c652be48da + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/42173ab6-34a9-4638-b99b-055a13d65a42 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:36:49.026178Z","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":null},"id":"c37b8d34-4793-49ad-9ec4-210f5965639e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":1,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sweet-benz","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:36:49.026178Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:36:49.719674Z","enable_http3":false,"id":"d2c1877f-b317-4010-918b-44c652be48da","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":1,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"},"name":"tf-lb-frt-sweet-wilbur","timeout_client":null,"updated_at":"2023-06-29T13:36:50.318549Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:17:46.597662Z","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":"ab36bd9d-548b-4d87-8fb1-f45110b2a5a2","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":1,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-cori","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:17:46.597662Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:17:47.355362Z","enable_http3":false,"id":"42173ab6-34a9-4638-b99b-055a13d65a42","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":1,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"},"name":"tf-lb-frt-zealous-kapitsa","timeout_client":null,"updated_at":"2023-07-03T20:17:47.830792Z"}' headers: Content-Length: - - "2898" + - "2822" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:51 GMT + - Mon, 03 Jul 2023 20:17:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -898,7 +898,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d131915e-abca-4010-8efe-688e800ca748 + - 6b427f8e-b7ef-475a-89ee-f1b61c31f551 status: 200 OK code: 200 duration: "" @@ -909,19 +909,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/d2c1877f-b317-4010-918b-44c652be48da/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/42173ab6-34a9-4638-b99b-055a13d65a42/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:51 GMT + - Mon, 03 Jul 2023 20:17:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -931,7 +931,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a87e4856-7e8f-47b4-95a7-12ea5184c891 + - 714beaf6-8afc-4220-9c42-80265db050bb status: 200 OK code: 200 duration: "" @@ -942,19 +942,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/d2c1877f-b317-4010-918b-44c652be48da/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/42173ab6-34a9-4638-b99b-055a13d65a42/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:51 GMT + - Mon, 03 Jul 2023 20:17:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -964,7 +964,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 199ce5e1-2375-4bf6-800b-01ec61b4d63d + - 2b4697c8-b4e5-49b6-83db-462dd0689c04 status: 200 OK code: 200 duration: "" @@ -975,19 +975,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "319" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:52 GMT + - Mon, 03 Jul 2023 20:17:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -997,7 +997,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f76af830-d901-474a-8143-533afde55184 + - 36b7cd45-2576-4505-9ba7-90dfd9f7afd6 status: 200 OK code: 200 duration: "" @@ -1008,19 +1008,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/50d28ba0-2414-41f3-93d0-ca0da99a20ba + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/753f2bdc-008a-4738-99dd-4bb85d888352 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":1,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[{"created_at":"2023-06-29T13:31:04.415589Z","id":"b537295a-a1e2-40c7-a388-c2c77dc74a2d","ip_address":"10.76.76.5","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:36:50.657298Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":1,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[{"created_at":"2023-07-03T10:22:13.530827Z","id":"5714e092-f0bd-48a5-b267-344688931c4e","ip_address":"10.74.78.103","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:17:48.121458Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"}' headers: Content-Length: - - "1090" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:52 GMT + - Mon, 03 Jul 2023 20:17:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1030,7 +1030,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e48c71b9-d199-4b5e-9500-f481897c076e + - c577d66e-41fe-4f7a-b282-88ce2d0eee65 status: 200 OK code: 200 duration: "" @@ -1041,19 +1041,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/50d28ba0-2414-41f3-93d0-ca0da99a20ba + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/753f2bdc-008a-4738-99dd-4bb85d888352 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":1,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[{"created_at":"2023-06-29T13:31:04.415589Z","id":"b537295a-a1e2-40c7-a388-c2c77dc74a2d","ip_address":"10.76.76.5","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:36:50.657298Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":1,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[{"created_at":"2023-07-03T10:22:13.530827Z","id":"5714e092-f0bd-48a5-b267-344688931c4e","ip_address":"10.74.78.103","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:17:48.121458Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"}' headers: Content-Length: - - "1090" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:52 GMT + - Mon, 03 Jul 2023 20:17:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1063,7 +1063,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 740213a2-7541-4d4f-a830-500cf0adb207 + - 8e970635-4a72-4bf7-bb87-9e2c5bd2de89 status: 200 OK code: 200 duration: "" @@ -1074,19 +1074,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/50d28ba0-2414-41f3-93d0-ca0da99a20ba/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/753f2bdc-008a-4738-99dd-4bb85d888352/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:52 GMT + - Mon, 03 Jul 2023 20:17:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1096,7 +1096,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95b1a9d7-7e30-44a8-b936-2950c3b8743a + - 7662410a-2dbe-4200-8e14-063e9a8f834d status: 200 OK code: 200 duration: "" @@ -1107,19 +1107,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/c37b8d34-4793-49ad-9ec4-210f5965639e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/ab36bd9d-548b-4d87-8fb1-f45110b2a5a2 method: GET response: - body: '{"created_at":"2023-06-29T13:36:49.026178Z","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":null},"id":"c37b8d34-4793-49ad-9ec4-210f5965639e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":1,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[{"created_at":"2023-06-29T13:31:04.415589Z","id":"b537295a-a1e2-40c7-a388-c2c77dc74a2d","ip_address":"10.76.76.5","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:36:50.657298Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sweet-benz","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:36:49.026178Z"}' + body: '{"created_at":"2023-07-03T20:17:46.597662Z","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":"ab36bd9d-548b-4d87-8fb1-f45110b2a5a2","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":1,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[{"created_at":"2023-07-03T10:22:13.530827Z","id":"5714e092-f0bd-48a5-b267-344688931c4e","ip_address":"10.74.78.103","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:17:48.121458Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-cori","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:17:46.597662Z"}' headers: Content-Length: - - "1949" + - "1898" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:52 GMT + - Mon, 03 Jul 2023 20:17:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1129,7 +1129,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b58e7ba-003c-452e-b206-61f9bf413e5a + - 3b9ca0d0-09ff-4243-a5c7-30e86a15bd10 status: 200 OK code: 200 duration: "" @@ -1140,19 +1140,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/50d28ba0-2414-41f3-93d0-ca0da99a20ba + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/753f2bdc-008a-4738-99dd-4bb85d888352 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":1,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[{"created_at":"2023-06-29T13:31:04.415589Z","id":"b537295a-a1e2-40c7-a388-c2c77dc74a2d","ip_address":"10.76.76.5","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:36:50.657298Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":1,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[{"created_at":"2023-07-03T10:22:13.530827Z","id":"5714e092-f0bd-48a5-b267-344688931c4e","ip_address":"10.74.78.103","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:17:48.121458Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"}' headers: Content-Length: - - "1090" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:52 GMT + - Mon, 03 Jul 2023 20:17:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1162,7 +1162,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2bbf79f-25e3-41e7-8bc0-d1d87e96605e + - 5c74c63c-d571-43c1-9462-4090c409ffa3 status: 200 OK code: 200 duration: "" @@ -1173,19 +1173,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/d2c1877f-b317-4010-918b-44c652be48da + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/42173ab6-34a9-4638-b99b-055a13d65a42 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:36:49.026178Z","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":null},"id":"c37b8d34-4793-49ad-9ec4-210f5965639e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":1,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sweet-benz","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:36:49.026178Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:36:49.719674Z","enable_http3":false,"id":"d2c1877f-b317-4010-918b-44c652be48da","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":1,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"},"name":"tf-lb-frt-sweet-wilbur","timeout_client":null,"updated_at":"2023-06-29T13:36:50.318549Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:17:46.597662Z","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":"ab36bd9d-548b-4d87-8fb1-f45110b2a5a2","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":1,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-cori","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:17:46.597662Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:17:47.355362Z","enable_http3":false,"id":"42173ab6-34a9-4638-b99b-055a13d65a42","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":1,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"},"name":"tf-lb-frt-zealous-kapitsa","timeout_client":null,"updated_at":"2023-07-03T20:17:47.830792Z"}' headers: Content-Length: - - "2898" + - "2822" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:52 GMT + - Mon, 03 Jul 2023 20:17:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1195,7 +1195,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e16b47a-6624-46c6-bbf8-9e9d47c9c617 + - 3c4901f1-41b0-47ff-8351-d55d9b1f0a61 status: 200 OK code: 200 duration: "" @@ -1206,19 +1206,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/d2c1877f-b317-4010-918b-44c652be48da/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/42173ab6-34a9-4638-b99b-055a13d65a42/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:52 GMT + - Mon, 03 Jul 2023 20:17:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1228,7 +1228,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33aa57d6-b012-419c-a01d-29716bff01a9 + - 2a360cc5-2359-4c80-8be9-aea9f2d38118 status: 200 OK code: 200 duration: "" @@ -1239,19 +1239,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/50d28ba0-2414-41f3-93d0-ca0da99a20ba/frontends?name=tf-lb-frt-sweet-wilbur&order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/42173ab6-34a9-4638-b99b-055a13d65a42 method: GET response: - body: '{"frontends":[{"backend":{"created_at":"2023-06-29T13:36:49.026178Z","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":null},"id":"c37b8d34-4793-49ad-9ec4-210f5965639e","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sweet-benz","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:36:49.026178Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:36:49.719674Z","enable_http3":false,"id":"d2c1877f-b317-4010-918b-44c652be48da","inbound_port":80,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-lb-frt-sweet-wilbur","timeout_client":null,"updated_at":"2023-06-29T13:36:50.318549Z"}],"total_count":1}' + body: '{"backend":{"created_at":"2023-07-03T20:17:46.597662Z","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":"ab36bd9d-548b-4d87-8fb1-f45110b2a5a2","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":1,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-cori","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:17:46.597662Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:17:47.355362Z","enable_http3":false,"id":"42173ab6-34a9-4638-b99b-055a13d65a42","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":1,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"},"name":"tf-lb-frt-zealous-kapitsa","timeout_client":null,"updated_at":"2023-07-03T20:17:47.830792Z"}' headers: Content-Length: - - "2025" + - "2822" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:52 GMT + - Mon, 03 Jul 2023 20:17:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1261,7 +1261,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c72710ef-f345-4779-8f80-c3f0924177b8 + - b7f17874-2870-45a9-b1e9-984fd403280f status: 200 OK code: 200 duration: "" @@ -1272,19 +1272,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/d2c1877f-b317-4010-918b-44c652be48da + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/753f2bdc-008a-4738-99dd-4bb85d888352/frontends?name=tf-lb-frt-zealous-kapitsa&order_by=created_at_asc method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:36:49.026178Z","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":null},"id":"c37b8d34-4793-49ad-9ec4-210f5965639e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":1,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sweet-benz","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:36:49.026178Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:36:49.719674Z","enable_http3":false,"id":"d2c1877f-b317-4010-918b-44c652be48da","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":1,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"},"name":"tf-lb-frt-sweet-wilbur","timeout_client":null,"updated_at":"2023-06-29T13:36:50.318549Z"}' + body: '{"frontends":[{"backend":{"created_at":"2023-07-03T20:17:46.597662Z","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":"ab36bd9d-548b-4d87-8fb1-f45110b2a5a2","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-cori","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:17:46.597662Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:17:47.355362Z","enable_http3":false,"id":"42173ab6-34a9-4638-b99b-055a13d65a42","inbound_port":80,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-lb-frt-zealous-kapitsa","timeout_client":null,"updated_at":"2023-07-03T20:17:47.830792Z"}],"total_count":1}' headers: Content-Length: - - "2898" + - "1954" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:52 GMT + - Mon, 03 Jul 2023 20:17:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1294,7 +1294,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63d98ad2-5c84-409d-aab8-5026efdfe0bc + - 354dbf53-b853-4c62-b763-92344ee24ec4 status: 200 OK code: 200 duration: "" @@ -1305,19 +1305,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/d2c1877f-b317-4010-918b-44c652be48da + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/42173ab6-34a9-4638-b99b-055a13d65a42 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:36:49.026178Z","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":null},"id":"c37b8d34-4793-49ad-9ec4-210f5965639e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":1,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sweet-benz","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:36:49.026178Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:36:49.719674Z","enable_http3":false,"id":"d2c1877f-b317-4010-918b-44c652be48da","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":1,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"},"name":"tf-lb-frt-sweet-wilbur","timeout_client":null,"updated_at":"2023-06-29T13:36:50.318549Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:17:46.597662Z","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":"ab36bd9d-548b-4d87-8fb1-f45110b2a5a2","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":1,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-cori","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:17:46.597662Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:17:47.355362Z","enable_http3":false,"id":"42173ab6-34a9-4638-b99b-055a13d65a42","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":1,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"},"name":"tf-lb-frt-zealous-kapitsa","timeout_client":null,"updated_at":"2023-07-03T20:17:47.830792Z"}' headers: Content-Length: - - "2898" + - "2822" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:52 GMT + - Mon, 03 Jul 2023 20:17:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1327,7 +1327,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce6ef999-0eb4-4695-be71-261bfc789df0 + - 5cfaa8f0-b2e7-4c0e-a704-4069660f0d16 status: 200 OK code: 200 duration: "" @@ -1338,19 +1338,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/d2c1877f-b317-4010-918b-44c652be48da/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/42173ab6-34a9-4638-b99b-055a13d65a42/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:52 GMT + - Mon, 03 Jul 2023 20:17:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1360,7 +1360,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b1789a6-eb66-4677-b46e-4927f5c9ae6f + - b3267380-69bd-43cd-b576-030570730d0c status: 200 OK code: 200 duration: "" @@ -1371,19 +1371,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/d2c1877f-b317-4010-918b-44c652be48da/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/42173ab6-34a9-4638-b99b-055a13d65a42/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:53 GMT + - Mon, 03 Jul 2023 20:17:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1393,7 +1393,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6864f50-9c5d-4da7-9d1f-3c2e219108b0 + - 00179dc0-ae51-44f2-8dfe-5418e19d3295 status: 200 OK code: 200 duration: "" @@ -1404,19 +1404,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/50d28ba0-2414-41f3-93d0-ca0da99a20ba/frontends?name=tf-lb-frt-sweet-wilbur&order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/753f2bdc-008a-4738-99dd-4bb85d888352/frontends?name=tf-lb-frt-zealous-kapitsa&order_by=created_at_asc method: GET response: - body: '{"frontends":[{"backend":{"created_at":"2023-06-29T13:36:49.026178Z","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":null},"id":"c37b8d34-4793-49ad-9ec4-210f5965639e","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sweet-benz","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:36:49.026178Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:36:49.719674Z","enable_http3":false,"id":"d2c1877f-b317-4010-918b-44c652be48da","inbound_port":80,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-lb-frt-sweet-wilbur","timeout_client":null,"updated_at":"2023-06-29T13:36:50.318549Z"}],"total_count":1}' + body: '{"frontends":[{"backend":{"created_at":"2023-07-03T20:17:46.597662Z","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":"ab36bd9d-548b-4d87-8fb1-f45110b2a5a2","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-cori","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:17:46.597662Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:17:47.355362Z","enable_http3":false,"id":"42173ab6-34a9-4638-b99b-055a13d65a42","inbound_port":80,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-lb-frt-zealous-kapitsa","timeout_client":null,"updated_at":"2023-07-03T20:17:47.830792Z"}],"total_count":1}' headers: Content-Length: - - "2025" + - "1954" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:53 GMT + - Mon, 03 Jul 2023 20:17:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1426,7 +1426,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b67238c3-0d86-4d1c-ab6b-f7da440680d4 + - 4542c27f-0ac2-478a-b199-a873a887c04d status: 200 OK code: 200 duration: "" @@ -1437,19 +1437,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/d2c1877f-b317-4010-918b-44c652be48da + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/42173ab6-34a9-4638-b99b-055a13d65a42 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:36:49.026178Z","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":null},"id":"c37b8d34-4793-49ad-9ec4-210f5965639e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":1,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sweet-benz","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:36:49.026178Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:36:49.719674Z","enable_http3":false,"id":"d2c1877f-b317-4010-918b-44c652be48da","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":1,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"},"name":"tf-lb-frt-sweet-wilbur","timeout_client":null,"updated_at":"2023-06-29T13:36:50.318549Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:17:46.597662Z","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":"ab36bd9d-548b-4d87-8fb1-f45110b2a5a2","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":1,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-cori","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:17:46.597662Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:17:47.355362Z","enable_http3":false,"id":"42173ab6-34a9-4638-b99b-055a13d65a42","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":1,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"},"name":"tf-lb-frt-zealous-kapitsa","timeout_client":null,"updated_at":"2023-07-03T20:17:47.830792Z"}' headers: Content-Length: - - "2898" + - "2822" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:53 GMT + - Mon, 03 Jul 2023 20:17:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1459,7 +1459,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76e59f41-34fd-4526-893a-5a2851e00675 + - 85e6f124-8921-4e1b-9b37-684fc020cf81 status: 200 OK code: 200 duration: "" @@ -1470,19 +1470,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/d2c1877f-b317-4010-918b-44c652be48da + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/42173ab6-34a9-4638-b99b-055a13d65a42 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:36:49.026178Z","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":null},"id":"c37b8d34-4793-49ad-9ec4-210f5965639e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":1,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sweet-benz","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:36:49.026178Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:36:49.719674Z","enable_http3":false,"id":"d2c1877f-b317-4010-918b-44c652be48da","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":1,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"},"name":"tf-lb-frt-sweet-wilbur","timeout_client":null,"updated_at":"2023-06-29T13:36:50.318549Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:17:46.597662Z","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":"ab36bd9d-548b-4d87-8fb1-f45110b2a5a2","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":1,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-cori","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:17:46.597662Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:17:47.355362Z","enable_http3":false,"id":"42173ab6-34a9-4638-b99b-055a13d65a42","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":1,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"},"name":"tf-lb-frt-zealous-kapitsa","timeout_client":null,"updated_at":"2023-07-03T20:17:47.830792Z"}' headers: Content-Length: - - "2898" + - "2822" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:53 GMT + - Mon, 03 Jul 2023 20:17:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1492,7 +1492,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 523a806a-b9d7-406a-abaf-2abff3b3777d + - a861267b-843e-486f-9a92-900c0039f148 status: 200 OK code: 200 duration: "" @@ -1503,19 +1503,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/d2c1877f-b317-4010-918b-44c652be48da/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/42173ab6-34a9-4638-b99b-055a13d65a42/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:53 GMT + - Mon, 03 Jul 2023 20:17:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1525,7 +1525,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a8a4f7d-a25b-4691-b869-655fbb759c9a + - cedd442d-8655-4ef2-a64c-4f98ffd8aaef status: 200 OK code: 200 duration: "" @@ -1536,19 +1536,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/d2c1877f-b317-4010-918b-44c652be48da/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/42173ab6-34a9-4638-b99b-055a13d65a42/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:53 GMT + - Mon, 03 Jul 2023 20:17:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1558,7 +1558,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4403d373-0204-47dc-a522-d87fa843168f + - 8382b952-0a9a-4066-978b-24ddeae96807 status: 200 OK code: 200 duration: "" @@ -1569,7 +1569,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/d2c1877f-b317-4010-918b-44c652be48da + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/42173ab6-34a9-4638-b99b-055a13d65a42 method: DELETE response: body: "" @@ -1579,7 +1579,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:54 GMT + - Mon, 03 Jul 2023 20:17:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1589,7 +1589,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9776333c-00df-415c-ae9a-3e640a743cb9 + - 145639be-714f-40bd-aa6a-fbedf8fedb1a status: 204 No Content code: 204 duration: "" @@ -1600,19 +1600,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/50d28ba0-2414-41f3-93d0-ca0da99a20ba + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/753f2bdc-008a-4738-99dd-4bb85d888352 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":0,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[{"created_at":"2023-06-29T13:31:04.415589Z","id":"b537295a-a1e2-40c7-a388-c2c77dc74a2d","ip_address":"10.76.76.5","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:36:53.958372Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":0,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[{"created_at":"2023-07-03T10:22:13.530827Z","id":"5714e092-f0bd-48a5-b267-344688931c4e","ip_address":"10.74.78.103","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:17:51.165094Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"}' headers: Content-Length: - - "1092" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:54 GMT + - Mon, 03 Jul 2023 20:17:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1622,7 +1622,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34b7d78b-8db8-444c-b1d4-35522a291ab5 + - efdc74c4-31e4-4872-80d9-623b6c37bf2a status: 200 OK code: 200 duration: "" @@ -1633,19 +1633,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/50d28ba0-2414-41f3-93d0-ca0da99a20ba + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/753f2bdc-008a-4738-99dd-4bb85d888352 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":0,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[{"created_at":"2023-06-29T13:31:04.415589Z","id":"b537295a-a1e2-40c7-a388-c2c77dc74a2d","ip_address":"10.76.76.5","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:36:54.245144Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":0,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[{"created_at":"2023-07-03T10:22:13.530827Z","id":"5714e092-f0bd-48a5-b267-344688931c4e","ip_address":"10.74.78.103","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:17:51.394511Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"}' headers: Content-Length: - - "1090" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:54 GMT + - Mon, 03 Jul 2023 20:17:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1655,7 +1655,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ea45b8f-4601-43e5-97a0-0ec4e62203b4 + - 1d68f2e7-83e4-4af7-ab4c-d3a46aabfb40 status: 200 OK code: 200 duration: "" @@ -1666,7 +1666,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/c37b8d34-4793-49ad-9ec4-210f5965639e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/ab36bd9d-548b-4d87-8fb1-f45110b2a5a2 method: DELETE response: body: "" @@ -1676,7 +1676,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:54 GMT + - Mon, 03 Jul 2023 20:17:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1686,7 +1686,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 21d93956-efb8-47f5-b89f-174184c1774b + - 53735304-53a9-4ddb-95a9-583b676c20e4 status: 204 No Content code: 204 duration: "" @@ -1697,19 +1697,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/50d28ba0-2414-41f3-93d0-ca0da99a20ba + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/753f2bdc-008a-4738-99dd-4bb85d888352 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":0,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[{"created_at":"2023-06-29T13:31:04.415589Z","id":"b537295a-a1e2-40c7-a388-c2c77dc74a2d","ip_address":"10.76.76.5","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:36:54.457679Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":0,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[{"created_at":"2023-07-03T10:22:13.530827Z","id":"5714e092-f0bd-48a5-b267-344688931c4e","ip_address":"10.74.78.103","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:17:51.551288Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"}' headers: Content-Length: - - "1092" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:54 GMT + - Mon, 03 Jul 2023 20:17:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1719,7 +1719,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a29f3d0-d186-47a9-b994-2af2c56f0157 + - 22fcc820-2a18-48b5-a036-dbfe46750ed4 status: 200 OK code: 200 duration: "" @@ -1730,19 +1730,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/50d28ba0-2414-41f3-93d0-ca0da99a20ba + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/753f2bdc-008a-4738-99dd-4bb85d888352 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":0,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[{"created_at":"2023-06-29T13:31:04.415589Z","id":"b537295a-a1e2-40c7-a388-c2c77dc74a2d","ip_address":"10.76.76.5","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:36:54.704849Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:20.474643Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":0,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[{"created_at":"2023-07-03T10:22:13.530827Z","id":"5714e092-f0bd-48a5-b267-344688931c4e","ip_address":"10.74.78.103","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:17:51.551288Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:18.085670Z","zone":"fr-par-1"}' headers: Content-Length: - - "1090" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:54 GMT + - Mon, 03 Jul 2023 20:17:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1752,7 +1752,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65ccb822-c18c-4e62-b940-8e5486dcedb9 + - 9e36e084-9679-414a-9813-f6666e6d043f status: 200 OK code: 200 duration: "" @@ -1763,7 +1763,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/50d28ba0-2414-41f3-93d0-ca0da99a20ba?release_ip=false + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/753f2bdc-008a-4738-99dd-4bb85d888352?release_ip=false method: DELETE response: body: "" @@ -1773,7 +1773,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:54 GMT + - Mon, 03 Jul 2023 20:17:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1783,7 +1783,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc3c7614-8c63-46e5-854a-cc93eb2033ba + - 5d21e09b-20c8-47ee-8516-e01d9e716be7 status: 204 No Content code: 204 duration: "" @@ -1794,19 +1794,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/50d28ba0-2414-41f3-93d0-ca0da99a20ba + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/753f2bdc-008a-4738-99dd-4bb85d888352 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:36:18.316143Z","description":"","frontend_count":0,"id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","instances":[{"created_at":"2023-06-29T13:31:04.415589Z","id":"b537295a-a1e2-40c7-a388-c2c77dc74a2d","ip_address":"10.76.76.5","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:36:54.704849Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"50d28ba0-2414-41f3-93d0-ca0da99a20ba","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:36:54.854813Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:17:15.747818Z","description":"","frontend_count":0,"id":"753f2bdc-008a-4738-99dd-4bb85d888352","instances":[{"created_at":"2023-07-03T10:22:13.530827Z","id":"5714e092-f0bd-48a5-b267-344688931c4e","ip_address":"10.74.78.103","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:17:51.800368Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"753f2bdc-008a-4738-99dd-4bb85d888352","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:17:51.917242Z","zone":"fr-par-1"}' headers: Content-Length: - - "1094" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:55 GMT + - Mon, 03 Jul 2023 20:17:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1816,7 +1816,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7f9ed43-6ded-4839-b210-12d6207afd5f + - 8b28745d-2358-4d32-ac14-031d2d69264f status: 200 OK code: 200 duration: "" @@ -1827,7 +1827,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/50d28ba0-2414-41f3-93d0-ca0da99a20ba + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/753f2bdc-008a-4738-99dd-4bb85d888352 method: GET response: body: '{"message":"lbs not Found"}' @@ -1839,7 +1839,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:37:25 GMT + - Mon, 03 Jul 2023 20:18:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1849,7 +1849,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c91ca971-9acd-4faf-9e79-bbac23f5af0c + - 2630ec03-87a4-480b-bb90-45dbefd8779a status: 404 Not Found code: 404 duration: "" @@ -1860,7 +1860,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/50d28ba0-2414-41f3-93d0-ca0da99a20ba + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/753f2bdc-008a-4738-99dd-4bb85d888352 method: GET response: body: '{"message":"lbs not Found"}' @@ -1872,7 +1872,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:37:25 GMT + - Mon, 03 Jul 2023 20:18:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1882,7 +1882,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86d0c508-404f-41ba-a716-11e25f3d6767 + - 86ff00de-e6d6-4db0-a122-611f24dbca09 status: 404 Not Found code: 404 duration: "" @@ -1893,19 +1893,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "285" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:37:25 GMT + - Mon, 03 Jul 2023 20:18:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1915,7 +1915,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54c78114-626c-4f18-a429-a8f1ac1c9a29 + - 8f2c3d35-184c-4743-8702-e61470268a24 status: 200 OK code: 200 duration: "" @@ -1926,7 +1926,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: DELETE response: body: "" @@ -1936,7 +1936,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:37:25 GMT + - Mon, 03 Jul 2023 20:18:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1946,7 +1946,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6ee6f90-d084-464f-9f50-1801f1b34d17 + - 9f73f042-a385-4d2a-9f22-729712cae9ce status: 204 No Content code: 204 duration: "" @@ -1957,7 +1957,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/50d28ba0-2414-41f3-93d0-ca0da99a20ba + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/753f2bdc-008a-4738-99dd-4bb85d888352 method: GET response: body: '{"message":"lbs not Found"}' @@ -1969,7 +1969,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:37:25 GMT + - Mon, 03 Jul 2023 20:18:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1979,7 +1979,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ddb542ae-014c-4b15-acf1-503f5634d636 + - 6bc6d7e9-425b-4e83-ac9c-33b901aae457 status: 404 Not Found code: 404 duration: "" @@ -1990,7 +1990,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: body: '{"message":"ips not Found"}' @@ -2002,7 +2002,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:37:25 GMT + - Mon, 03 Jul 2023 20:18:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2012,7 +2012,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b51bcfe5-d815-454a-909d-b26cc4739c66 + - 98cd56e7-e0ac-4da6-a333-294abc2dfeb2 status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/data-source-lb-frontends-basic.cassette.yaml b/scaleway/testdata/data-source-lb-frontends-basic.cassette.yaml index 28d7f06e6b..4ec002a9f8 100644 --- a/scaleway/testdata/data-source-lb-frontends-basic.cassette.yaml +++ b/scaleway/testdata/data-source-lb-frontends-basic.cassette.yaml @@ -13,16 +13,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips method: POST response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "285" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:37:32 GMT + - Mon, 03 Jul 2023 20:18:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -32,7 +32,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d84fcad5-b669-48b6-8477-f89f7e7d7775 + - b15336c5-61aa-46dc-a162-06a57c35b179 status: 200 OK code: 200 duration: "" @@ -43,19 +43,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "285" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:37:32 GMT + - Mon, 03 Jul 2023 20:18:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -65,12 +65,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3722eb45-a9b1-40e6-a8e7-7f0265a6caec + - 16203cd7-996b-40aa-8bf5-16aec349d9ed status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-lb","description":"","ip_id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","assign_flexible_ip":null,"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":"86df9ff8-7a77-492d-9b03-4f6205127499","assign_flexible_ip":null,"tags":null,"type":"lb-s","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' form: {} headers: Content-Type: @@ -81,16 +81,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs method: POST response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:37:32.780977012Z","description":"","frontend_count":0,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:32.780977012Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:18:30.303218778Z","description":"","frontend_count":0,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:30.303218778Z","zone":"fr-par-1"}' headers: Content-Length: - - "884" + - "862" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:37:32 GMT + - Mon, 03 Jul 2023 20:18:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -100,7 +100,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da088159-5db1-4cd1-b9cb-c2ed51d0203f + - d741b84c-a6f3-4f2f-8211-e12b026b7834 status: 200 OK code: 200 duration: "" @@ -111,19 +111,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":0,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:32.780977Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":0,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[{"created_at":"2023-07-03T20:17:24.721494Z","id":"98f9070c-36de-42b2-8d02-6624598ed8b6","ip_address":"10.74.110.67","region":"fr-par","status":"unknown","updated_at":"2023-07-03T20:18:30.512094Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:30.526588Z","zone":"fr-par-1"}' headers: Content-Length: - - "878" + - "1069" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:37:33 GMT + - Mon, 03 Jul 2023 20:18:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -133,7 +133,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - caf6ae5b-d89c-4475-8518-e0179bcaf6e3 + - 57e616af-6f36-4260-8835-0b77fc659945 status: 200 OK code: 200 duration: "" @@ -144,19 +144,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":0,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[{"created_at":"2023-06-29T12:25:04.403265Z","id":"6dfc62f6-2155-4c4c-8726-1d5613cf1754","ip_address":"10.76.82.85","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:37:33.905766Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":0,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[{"created_at":"2023-07-03T20:17:24.721494Z","id":"98f9070c-36de-42b2-8d02-6624598ed8b6","ip_address":"10.74.110.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:18:31.611270Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:03 GMT + - Mon, 03 Jul 2023 20:19:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -166,7 +166,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4ddd331a-5bed-420e-8e36-d964481589eb + - 03a9841d-5dc8-42cd-a45b-7c79522a80ce status: 200 OK code: 200 duration: "" @@ -177,19 +177,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":0,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[{"created_at":"2023-06-29T12:25:04.403265Z","id":"6dfc62f6-2155-4c4c-8726-1d5613cf1754","ip_address":"10.76.82.85","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:37:33.905766Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":0,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[{"created_at":"2023-07-03T20:17:24.721494Z","id":"98f9070c-36de-42b2-8d02-6624598ed8b6","ip_address":"10.74.110.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:18:31.611270Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:03 GMT + - Mon, 03 Jul 2023 20:19:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -199,7 +199,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd63432e-4c91-4e8d-a1d0-68b0bd4be5ad + - 57089e0c-5253-4181-8279-301145374a54 status: 200 OK code: 200 duration: "" @@ -210,19 +210,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:03 GMT + - Mon, 03 Jul 2023 20:19:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -232,7 +232,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c85dabe-36f5-4234-8ea7-a3cd489f4272 + - 498c4cb1-9ba6-49da-9b89-67dea86fe1d4 status: 200 OK code: 200 duration: "" @@ -243,19 +243,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":0,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[{"created_at":"2023-06-29T12:25:04.403265Z","id":"6dfc62f6-2155-4c4c-8726-1d5613cf1754","ip_address":"10.76.82.85","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:37:33.905766Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":0,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[{"created_at":"2023-07-03T20:17:24.721494Z","id":"98f9070c-36de-42b2-8d02-6624598ed8b6","ip_address":"10.74.110.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:18:31.611270Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:03 GMT + - Mon, 03 Jul 2023 20:19:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -265,12 +265,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6d4ece9-549e-45eb-8044-16d4bef73c20 + - 839f2012-cb38-4eff-81f5-0e978ab45282 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-bkd-interesting-hypatia","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_max_retries":2,"check_send_proxy":false,"transient_check_delay":null,"check_delay":60000,"check_timeout":30000},"server_ip":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":null,"max_retries":3,"max_connections":null,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' + body: '{"name":"tf-lb-bkd-keen-aryabhata","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_max_retries":2,"check_send_proxy":false,"transient_check_delay":"0.500000000s","check_delay":60000,"check_timeout":30000},"server_ip":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":null,"max_retries":3,"max_connections":null,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' form: {} headers: Content-Type: @@ -278,19 +278,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43/backends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be/backends method: POST response: - body: '{"created_at":"2023-06-29T13:38:03.447231671Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"51db71af-2b0b-49b4-9d55-3da2986c186f","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":0,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[{"created_at":"2023-06-29T12:25:04.403265Z","id":"6dfc62f6-2155-4c4c-8726-1d5613cf1754","ip_address":"10.76.82.85","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:38:03.487004451Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-interesting-hypatia","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:38:03.447231671Z"}' + body: '{"created_at":"2023-07-03T20:19:01.079082675Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"da7ba5df-6c6e-4961-8b7b-2293b5660b18","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":0,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[{"created_at":"2023-07-03T20:17:24.721494Z","id":"98f9070c-36de-42b2-8d02-6624598ed8b6","ip_address":"10.74.110.67","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:19:01.104392174Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-keen-aryabhata","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:19:01.079082675Z"}' headers: Content-Length: - - "1971" + - "1913" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:03 GMT + - Mon, 03 Jul 2023 20:19:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -300,7 +300,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - edd0cf52-6179-48dc-a5aa-9e77b927fde6 + - 87841a2d-eb3b-409f-8c77-61a7177f679d status: 200 OK code: 200 duration: "" @@ -311,19 +311,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":0,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[{"created_at":"2023-06-29T12:25:04.403265Z","id":"6dfc62f6-2155-4c4c-8726-1d5613cf1754","ip_address":"10.76.82.85","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:38:03.487004Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":0,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[{"created_at":"2023-07-03T20:17:24.721494Z","id":"98f9070c-36de-42b2-8d02-6624598ed8b6","ip_address":"10.74.110.67","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:19:01.104392Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:03 GMT + - Mon, 03 Jul 2023 20:19:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -333,7 +333,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee90533d-e5f3-417b-a165-320e19075da5 + - 772ba241-c833-4a27-8c9b-b2120d932114 status: 200 OK code: 200 duration: "" @@ -344,19 +344,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/51db71af-2b0b-49b4-9d55-3da2986c186f + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/da7ba5df-6c6e-4961-8b7b-2293b5660b18 method: GET response: - body: '{"created_at":"2023-06-29T13:38:03.447232Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"51db71af-2b0b-49b4-9d55-3da2986c186f","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":0,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[{"created_at":"2023-06-29T12:25:04.403265Z","id":"6dfc62f6-2155-4c4c-8726-1d5613cf1754","ip_address":"10.76.82.85","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:38:03.487004Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-interesting-hypatia","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:38:03.447232Z"}' + body: '{"created_at":"2023-07-03T20:19:01.079083Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"da7ba5df-6c6e-4961-8b7b-2293b5660b18","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":0,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[{"created_at":"2023-07-03T20:17:24.721494Z","id":"98f9070c-36de-42b2-8d02-6624598ed8b6","ip_address":"10.74.110.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:19:01.313475Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-keen-aryabhata","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:19:01.079083Z"}' headers: Content-Length: - - "1962" + - "1902" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:03 GMT + - Mon, 03 Jul 2023 20:19:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -366,7 +366,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28fceb19-1cea-42e4-8f1c-9ddb9d76d301 + - fa1c067a-a212-4486-a09a-4682319accc5 status: 200 OK code: 200 duration: "" @@ -377,19 +377,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":0,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[{"created_at":"2023-06-29T12:25:04.403265Z","id":"6dfc62f6-2155-4c4c-8726-1d5613cf1754","ip_address":"10.76.82.85","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:38:03.736591Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":0,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[{"created_at":"2023-07-03T20:17:24.721494Z","id":"98f9070c-36de-42b2-8d02-6624598ed8b6","ip_address":"10.74.110.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:19:01.313475Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:03 GMT + - Mon, 03 Jul 2023 20:19:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -399,7 +399,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 313b7e98-c1af-4372-a87a-80ad55fd02aa + - 5b969720-82af-472e-8828-d843bca8bb48 status: 200 OK code: 200 duration: "" @@ -410,19 +410,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":0,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[{"created_at":"2023-06-29T12:25:04.403265Z","id":"6dfc62f6-2155-4c4c-8726-1d5613cf1754","ip_address":"10.76.82.85","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:38:03.736591Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":0,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[{"created_at":"2023-07-03T20:17:24.721494Z","id":"98f9070c-36de-42b2-8d02-6624598ed8b6","ip_address":"10.74.110.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:19:01.313475Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:03 GMT + - Mon, 03 Jul 2023 20:19:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -432,12 +432,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d35e865-3a92-4734-9639-4f4c14016d8f + - 797c008c-2637-4c47-b582-541cb6c5d5f4 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-frontend-datasource0","inbound_port":50000,"backend_id":"51db71af-2b0b-49b4-9d55-3da2986c186f","certificate_ids":null,"enable_http3":false,"timeout_client":null}' + body: '{"name":"tf-frontend-datasource0","inbound_port":50000,"backend_id":"da7ba5df-6c6e-4961-8b7b-2293b5660b18","certificate_ids":null,"enable_http3":false,"timeout_client":null}' form: {} headers: Content-Type: @@ -445,19 +445,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43/frontends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be/frontends method: POST response: - body: '{"backend":{"created_at":"2023-06-29T13:38:03.447232Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"51db71af-2b0b-49b4-9d55-3da2986c186f","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":1,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-interesting-hypatia","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:38:03.447232Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:38:04.107045Z","enable_http3":false,"id":"737c8a14-81b5-49ec-ab57-5f7e3f29f464","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":1,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[{"created_at":"2023-06-29T12:25:04.403265Z","id":"6dfc62f6-2155-4c4c-8726-1d5613cf1754","ip_address":"10.76.82.85","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:38:04.162187016Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"},"name":"tf-frontend-datasource0","timeout_client":null,"updated_at":"2023-06-29T13:38:04.107045Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:19:01.079083Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"da7ba5df-6c6e-4961-8b7b-2293b5660b18","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":1,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-keen-aryabhata","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:19:01.079083Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:19:01.734306Z","enable_http3":false,"id":"8454b749-4c8b-4519-be22-d181a6512301","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":1,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[{"created_at":"2023-07-03T20:17:24.721494Z","id":"98f9070c-36de-42b2-8d02-6624598ed8b6","ip_address":"10.74.110.67","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:19:01.789136443Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"},"name":"tf-frontend-datasource0","timeout_client":null,"updated_at":"2023-07-03T20:19:01.734306Z"}' headers: Content-Length: - - "3134" + - "3044" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:04 GMT + - Mon, 03 Jul 2023 20:19:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -467,7 +467,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 244b4484-01aa-496a-be05-c7c85d69b071 + - 525fe71e-35c2-4338-8156-fc21252d5e40 status: 200 OK code: 200 duration: "" @@ -478,19 +478,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":1,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[{"created_at":"2023-06-29T12:25:04.403265Z","id":"6dfc62f6-2155-4c4c-8726-1d5613cf1754","ip_address":"10.76.82.85","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:38:04.162187Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":1,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[{"created_at":"2023-07-03T20:17:24.721494Z","id":"98f9070c-36de-42b2-8d02-6624598ed8b6","ip_address":"10.74.110.67","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:19:01.789136Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:04 GMT + - Mon, 03 Jul 2023 20:19:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -500,12 +500,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37eba02b-a0c7-49d3-96f2-e5bb138061d2 + - 74a39f67-78d1-4e39-90dc-f0dc8d1ff5b1 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-frontend-datasource0","inbound_port":50000,"backend_id":"51db71af-2b0b-49b4-9d55-3da2986c186f","certificate_ids":null,"enable_http3":false,"timeout_client":null}' + body: '{"name":"tf-frontend-datasource0","inbound_port":50000,"backend_id":"da7ba5df-6c6e-4961-8b7b-2293b5660b18","certificate_ids":null,"enable_http3":false,"timeout_client":null}' form: {} headers: Content-Type: @@ -513,19 +513,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/737c8a14-81b5-49ec-ab57-5f7e3f29f464 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/8454b749-4c8b-4519-be22-d181a6512301 method: PUT response: - body: '{"backend":{"created_at":"2023-06-29T13:38:03.447232Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"51db71af-2b0b-49b4-9d55-3da2986c186f","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":1,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-interesting-hypatia","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:38:03.447232Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:38:04.107045Z","enable_http3":false,"id":"737c8a14-81b5-49ec-ab57-5f7e3f29f464","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":1,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[{"created_at":"2023-06-29T12:25:04.403265Z","id":"6dfc62f6-2155-4c4c-8726-1d5613cf1754","ip_address":"10.76.82.85","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:38:04.661082510Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"},"name":"tf-frontend-datasource0","timeout_client":null,"updated_at":"2023-06-29T13:38:04.633273415Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:19:01.079083Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"da7ba5df-6c6e-4961-8b7b-2293b5660b18","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":1,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-keen-aryabhata","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:19:01.079083Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:19:01.734306Z","enable_http3":false,"id":"8454b749-4c8b-4519-be22-d181a6512301","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":1,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[{"created_at":"2023-07-03T20:17:24.721494Z","id":"98f9070c-36de-42b2-8d02-6624598ed8b6","ip_address":"10.74.110.67","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:19:02.157308248Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"},"name":"tf-frontend-datasource0","timeout_client":null,"updated_at":"2023-07-03T20:19:02.124569758Z"}' headers: Content-Length: - - "3137" + - "3047" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:04 GMT + - Mon, 03 Jul 2023 20:19:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -535,7 +535,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8434ccb4-2f70-4c3f-826b-04657ddbdf84 + - f9734aa9-c42b-4dd3-8730-eb25173a81a0 status: 200 OK code: 200 duration: "" @@ -546,19 +546,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/737c8a14-81b5-49ec-ab57-5f7e3f29f464/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/8454b749-4c8b-4519-be22-d181a6512301/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:04 GMT + - Mon, 03 Jul 2023 20:19:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -568,7 +568,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 851a6f82-078f-4fcb-98ec-16bb18f2221b + - 4d328771-1c57-41f1-951e-53a1b0405581 status: 200 OK code: 200 duration: "" @@ -579,19 +579,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/737c8a14-81b5-49ec-ab57-5f7e3f29f464 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/8454b749-4c8b-4519-be22-d181a6512301 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:38:03.447232Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"51db71af-2b0b-49b4-9d55-3da2986c186f","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":1,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-interesting-hypatia","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:38:03.447232Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:38:04.107045Z","enable_http3":false,"id":"737c8a14-81b5-49ec-ab57-5f7e3f29f464","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":1,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"},"name":"tf-frontend-datasource0","timeout_client":null,"updated_at":"2023-06-29T13:38:04.633273Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:19:01.079083Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"da7ba5df-6c6e-4961-8b7b-2293b5660b18","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":1,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-keen-aryabhata","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:19:01.079083Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:19:01.734306Z","enable_http3":false,"id":"8454b749-4c8b-4519-be22-d181a6512301","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":1,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"},"name":"tf-frontend-datasource0","timeout_client":null,"updated_at":"2023-07-03T20:19:02.124570Z"}' headers: Content-Length: - - "2912" + - "2827" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:04 GMT + - Mon, 03 Jul 2023 20:19:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -601,7 +601,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4fc47d2e-84ef-44c8-9869-b4ca4a9504f3 + - c665bcf4-58b4-46ce-bd8b-d6600dcfa6d9 status: 200 OK code: 200 duration: "" @@ -612,19 +612,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/737c8a14-81b5-49ec-ab57-5f7e3f29f464/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/8454b749-4c8b-4519-be22-d181a6512301/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:05 GMT + - Mon, 03 Jul 2023 20:19:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -634,7 +634,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 38492a8f-3b64-4ec5-afb3-80fbfc88740f + - 74668a99-b6a7-494e-87a9-0247edb8720d status: 200 OK code: 200 duration: "" @@ -645,19 +645,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "319" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:05 GMT + - Mon, 03 Jul 2023 20:19:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -667,7 +667,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c8fd7ee8-f56a-4c8c-8585-e643212532aa + - 1edc0b75-3bf9-495f-b00e-870f0b281aaf status: 200 OK code: 200 duration: "" @@ -678,19 +678,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":1,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[{"created_at":"2023-06-29T12:25:04.403265Z","id":"6dfc62f6-2155-4c4c-8726-1d5613cf1754","ip_address":"10.76.82.85","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:38:04.973082Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":1,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[{"created_at":"2023-07-03T20:17:24.721494Z","id":"98f9070c-36de-42b2-8d02-6624598ed8b6","ip_address":"10.74.110.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:19:02.382813Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:05 GMT + - Mon, 03 Jul 2023 20:19:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -700,7 +700,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f3de6c6-416b-47fc-92f4-f7d49444242e + - b6bdbadf-e7d8-453e-8202-7f063c17de63 status: 200 OK code: 200 duration: "" @@ -711,19 +711,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":1,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[{"created_at":"2023-06-29T12:25:04.403265Z","id":"6dfc62f6-2155-4c4c-8726-1d5613cf1754","ip_address":"10.76.82.85","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:38:04.973082Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":1,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[{"created_at":"2023-07-03T20:17:24.721494Z","id":"98f9070c-36de-42b2-8d02-6624598ed8b6","ip_address":"10.74.110.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:19:02.382813Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:05 GMT + - Mon, 03 Jul 2023 20:19:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -733,7 +733,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b66e22b-880e-4af1-b0c2-06e9d5dd291c + - 10b1868d-2473-4f5b-b380-fbfd7b76f9c3 status: 200 OK code: 200 duration: "" @@ -744,19 +744,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:05 GMT + - Mon, 03 Jul 2023 20:19:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -766,7 +766,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 669709cf-8813-48b4-b93d-43635279ea15 + - e8687688-b541-47a9-a13b-455d6dd15420 status: 200 OK code: 200 duration: "" @@ -777,19 +777,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/51db71af-2b0b-49b4-9d55-3da2986c186f + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/da7ba5df-6c6e-4961-8b7b-2293b5660b18 method: GET response: - body: '{"created_at":"2023-06-29T13:38:03.447232Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"51db71af-2b0b-49b4-9d55-3da2986c186f","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":1,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[{"created_at":"2023-06-29T12:25:04.403265Z","id":"6dfc62f6-2155-4c4c-8726-1d5613cf1754","ip_address":"10.76.82.85","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:38:04.973082Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-interesting-hypatia","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:38:03.447232Z"}' + body: '{"created_at":"2023-07-03T20:19:01.079083Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"da7ba5df-6c6e-4961-8b7b-2293b5660b18","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":1,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[{"created_at":"2023-07-03T20:17:24.721494Z","id":"98f9070c-36de-42b2-8d02-6624598ed8b6","ip_address":"10.74.110.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:19:02.382813Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-keen-aryabhata","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:19:01.079083Z"}' headers: Content-Length: - - "1960" + - "1902" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:05 GMT + - Mon, 03 Jul 2023 20:19:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -799,7 +799,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46cec3c3-b6ec-4274-86b4-9384e681aea0 + - 3ac9c00b-1abe-4dad-9768-5ce95d2cc95f status: 200 OK code: 200 duration: "" @@ -810,19 +810,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":1,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[{"created_at":"2023-06-29T12:25:04.403265Z","id":"6dfc62f6-2155-4c4c-8726-1d5613cf1754","ip_address":"10.76.82.85","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:38:04.973082Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":1,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[{"created_at":"2023-07-03T20:17:24.721494Z","id":"98f9070c-36de-42b2-8d02-6624598ed8b6","ip_address":"10.74.110.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:19:02.382813Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:05 GMT + - Mon, 03 Jul 2023 20:19:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -832,7 +832,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72bb6d0e-a4e4-49a4-8474-77ef97915071 + - 4255a6e6-554f-4f86-a894-e1f812c83802 status: 200 OK code: 200 duration: "" @@ -843,19 +843,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/737c8a14-81b5-49ec-ab57-5f7e3f29f464 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/8454b749-4c8b-4519-be22-d181a6512301 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:38:03.447232Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"51db71af-2b0b-49b4-9d55-3da2986c186f","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":1,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-interesting-hypatia","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:38:03.447232Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:38:04.107045Z","enable_http3":false,"id":"737c8a14-81b5-49ec-ab57-5f7e3f29f464","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":1,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"},"name":"tf-frontend-datasource0","timeout_client":null,"updated_at":"2023-06-29T13:38:04.633273Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:19:01.079083Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"da7ba5df-6c6e-4961-8b7b-2293b5660b18","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":1,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-keen-aryabhata","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:19:01.079083Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:19:01.734306Z","enable_http3":false,"id":"8454b749-4c8b-4519-be22-d181a6512301","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":1,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"},"name":"tf-frontend-datasource0","timeout_client":null,"updated_at":"2023-07-03T20:19:02.124570Z"}' headers: Content-Length: - - "2912" + - "2827" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:06 GMT + - Mon, 03 Jul 2023 20:19:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -865,7 +865,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1bcf0c19-4289-4b0e-a3fe-f4337115dc6b + - e3393f12-0fa1-46fc-bd98-b3f2e1c34ea9 status: 200 OK code: 200 duration: "" @@ -876,19 +876,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/737c8a14-81b5-49ec-ab57-5f7e3f29f464/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/8454b749-4c8b-4519-be22-d181a6512301/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:06 GMT + - Mon, 03 Jul 2023 20:19:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -898,7 +898,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed291224-f6d1-4255-bf9d-68fad239e908 + - b381dc63-cab2-4ff6-8c24-af6cd6f7c3cc status: 200 OK code: 200 duration: "" @@ -909,19 +909,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "319" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:06 GMT + - Mon, 03 Jul 2023 20:19:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -931,7 +931,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccd5ea2b-c68e-4850-92b6-4fe02ee32f17 + - 95a6c43e-ca10-466e-a958-e56df7eafa66 status: 200 OK code: 200 duration: "" @@ -942,19 +942,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":1,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[{"created_at":"2023-06-29T12:25:04.403265Z","id":"6dfc62f6-2155-4c4c-8726-1d5613cf1754","ip_address":"10.76.82.85","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:38:04.973082Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":1,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[{"created_at":"2023-07-03T20:17:24.721494Z","id":"98f9070c-36de-42b2-8d02-6624598ed8b6","ip_address":"10.74.110.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:19:02.382813Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:06 GMT + - Mon, 03 Jul 2023 20:19:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -964,7 +964,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70f4309e-7e98-4a3c-b914-d1e30a5f72f3 + - 3849ba5d-551b-4035-a13d-5ef70e672111 status: 200 OK code: 200 duration: "" @@ -975,19 +975,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":1,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[{"created_at":"2023-06-29T12:25:04.403265Z","id":"6dfc62f6-2155-4c4c-8726-1d5613cf1754","ip_address":"10.76.82.85","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:38:04.973082Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":1,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[{"created_at":"2023-07-03T20:17:24.721494Z","id":"98f9070c-36de-42b2-8d02-6624598ed8b6","ip_address":"10.74.110.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:19:02.382813Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:06 GMT + - Mon, 03 Jul 2023 20:19:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -997,7 +997,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4364c256-4429-43ed-be87-6d1023059e57 + - 494e3c85-c2ac-4fee-9786-3225a30ccfd5 status: 200 OK code: 200 duration: "" @@ -1008,19 +1008,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:06 GMT + - Mon, 03 Jul 2023 20:19:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1030,7 +1030,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce564464-11b4-4620-98c3-c8707e6d1935 + - c2377fdd-28fd-43c2-b912-d9eb4365c501 status: 200 OK code: 200 duration: "" @@ -1041,19 +1041,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/51db71af-2b0b-49b4-9d55-3da2986c186f + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/da7ba5df-6c6e-4961-8b7b-2293b5660b18 method: GET response: - body: '{"created_at":"2023-06-29T13:38:03.447232Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"51db71af-2b0b-49b4-9d55-3da2986c186f","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":1,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[{"created_at":"2023-06-29T12:25:04.403265Z","id":"6dfc62f6-2155-4c4c-8726-1d5613cf1754","ip_address":"10.76.82.85","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:38:04.973082Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-interesting-hypatia","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:38:03.447232Z"}' + body: '{"created_at":"2023-07-03T20:19:01.079083Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"da7ba5df-6c6e-4961-8b7b-2293b5660b18","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":1,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[{"created_at":"2023-07-03T20:17:24.721494Z","id":"98f9070c-36de-42b2-8d02-6624598ed8b6","ip_address":"10.74.110.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:19:02.382813Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-keen-aryabhata","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:19:01.079083Z"}' headers: Content-Length: - - "1960" + - "1902" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:06 GMT + - Mon, 03 Jul 2023 20:19:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1063,7 +1063,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84c58f64-46aa-43cf-8fa8-d0777f396187 + - e4051989-1662-4110-a0e9-f5cc0635e14e status: 200 OK code: 200 duration: "" @@ -1074,19 +1074,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":1,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[{"created_at":"2023-06-29T12:25:04.403265Z","id":"6dfc62f6-2155-4c4c-8726-1d5613cf1754","ip_address":"10.76.82.85","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:38:04.973082Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":1,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[{"created_at":"2023-07-03T20:17:24.721494Z","id":"98f9070c-36de-42b2-8d02-6624598ed8b6","ip_address":"10.74.110.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:19:02.382813Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:06 GMT + - Mon, 03 Jul 2023 20:19:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1096,7 +1096,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6bb3952-27e9-4251-8cb9-c0008dc3072a + - 122ba710-c7a9-4a3a-acbc-2470f3820d9c status: 200 OK code: 200 duration: "" @@ -1107,19 +1107,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/737c8a14-81b5-49ec-ab57-5f7e3f29f464 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/8454b749-4c8b-4519-be22-d181a6512301 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:38:03.447232Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"51db71af-2b0b-49b4-9d55-3da2986c186f","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":1,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-interesting-hypatia","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:38:03.447232Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:38:04.107045Z","enable_http3":false,"id":"737c8a14-81b5-49ec-ab57-5f7e3f29f464","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":1,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"},"name":"tf-frontend-datasource0","timeout_client":null,"updated_at":"2023-06-29T13:38:04.633273Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:19:01.079083Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"da7ba5df-6c6e-4961-8b7b-2293b5660b18","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":1,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-keen-aryabhata","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:19:01.079083Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:19:01.734306Z","enable_http3":false,"id":"8454b749-4c8b-4519-be22-d181a6512301","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":1,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"},"name":"tf-frontend-datasource0","timeout_client":null,"updated_at":"2023-07-03T20:19:02.124570Z"}' headers: Content-Length: - - "2912" + - "2827" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:06 GMT + - Mon, 03 Jul 2023 20:19:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1129,7 +1129,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f0a2e39f-e568-45bb-bcf9-a92bfcd56fd1 + - ae32a4a9-e1ea-47c9-9fc1-dc1cc16654e0 status: 200 OK code: 200 duration: "" @@ -1140,19 +1140,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/737c8a14-81b5-49ec-ab57-5f7e3f29f464/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/8454b749-4c8b-4519-be22-d181a6512301/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:07 GMT + - Mon, 03 Jul 2023 20:19:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1162,7 +1162,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 507b0045-1a08-4d5f-9862-e627f9b31391 + - 4d544ee3-7dfd-4274-8523-e3d7b44eee6f status: 200 OK code: 200 duration: "" @@ -1173,19 +1173,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":1,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[{"created_at":"2023-06-29T12:25:04.403265Z","id":"6dfc62f6-2155-4c4c-8726-1d5613cf1754","ip_address":"10.76.82.85","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:38:04.973082Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":1,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[{"created_at":"2023-07-03T20:17:24.721494Z","id":"98f9070c-36de-42b2-8d02-6624598ed8b6","ip_address":"10.74.110.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:19:02.382813Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:07 GMT + - Mon, 03 Jul 2023 20:19:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1195,12 +1195,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de30b077-4666-4cc4-aa9d-a354d23e28b7 + - d49fabfd-b35c-4683-80c4-3be5f774d7f5 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-frontend-datasource1","inbound_port":50001,"backend_id":"51db71af-2b0b-49b4-9d55-3da2986c186f","certificate_ids":null,"enable_http3":false,"timeout_client":null}' + body: '{"name":"tf-frontend-datasource1","inbound_port":50001,"backend_id":"da7ba5df-6c6e-4961-8b7b-2293b5660b18","certificate_ids":null,"enable_http3":false,"timeout_client":null}' form: {} headers: Content-Type: @@ -1208,19 +1208,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43/frontends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be/frontends method: POST response: - body: '{"backend":{"created_at":"2023-06-29T13:38:03.447232Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"51db71af-2b0b-49b4-9d55-3da2986c186f","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":2,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-interesting-hypatia","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:38:03.447232Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:38:07.800057Z","enable_http3":false,"id":"095c3100-228e-423a-9a76-44151cd7bf78","inbound_port":50001,"lb":{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":2,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[{"created_at":"2023-06-29T12:25:04.403265Z","id":"6dfc62f6-2155-4c4c-8726-1d5613cf1754","ip_address":"10.76.82.85","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:38:07.866624439Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"},"name":"tf-frontend-datasource1","timeout_client":null,"updated_at":"2023-06-29T13:38:07.800057Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:19:01.079083Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"da7ba5df-6c6e-4961-8b7b-2293b5660b18","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":2,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-keen-aryabhata","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:19:01.079083Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:19:05.481139Z","enable_http3":false,"id":"9e448829-3a99-4ce2-a90e-7508011f6c3f","inbound_port":50001,"lb":{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":2,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[{"created_at":"2023-07-03T20:17:24.721494Z","id":"98f9070c-36de-42b2-8d02-6624598ed8b6","ip_address":"10.74.110.67","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:19:05.531745882Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"},"name":"tf-frontend-datasource1","timeout_client":null,"updated_at":"2023-07-03T20:19:05.481139Z"}' headers: Content-Length: - - "3134" + - "3044" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:08 GMT + - Mon, 03 Jul 2023 20:19:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1230,7 +1230,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d8719d2-35f2-4e3b-9760-30a155ef7ec7 + - 4aea2ebe-1511-4007-afd0-be497066ba84 status: 200 OK code: 200 duration: "" @@ -1241,19 +1241,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":2,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[{"created_at":"2023-06-29T12:25:04.403265Z","id":"6dfc62f6-2155-4c4c-8726-1d5613cf1754","ip_address":"10.76.82.85","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:38:07.866624Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":2,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[{"created_at":"2023-07-03T20:17:24.721494Z","id":"98f9070c-36de-42b2-8d02-6624598ed8b6","ip_address":"10.74.110.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:19:05.794609Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:08 GMT + - Mon, 03 Jul 2023 20:19:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1263,12 +1263,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11d5b76b-eb53-4923-843f-29d107b6911f + - 24160a36-92da-4f4c-8967-1505265e215b status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-frontend-datasource1","inbound_port":50001,"backend_id":"51db71af-2b0b-49b4-9d55-3da2986c186f","certificate_ids":null,"enable_http3":false,"timeout_client":null}' + body: '{"name":"tf-frontend-datasource1","inbound_port":50001,"backend_id":"da7ba5df-6c6e-4961-8b7b-2293b5660b18","certificate_ids":null,"enable_http3":false,"timeout_client":null}' form: {} headers: Content-Type: @@ -1276,19 +1276,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/095c3100-228e-423a-9a76-44151cd7bf78 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/9e448829-3a99-4ce2-a90e-7508011f6c3f method: PUT response: - body: '{"backend":{"created_at":"2023-06-29T13:38:03.447232Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"51db71af-2b0b-49b4-9d55-3da2986c186f","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":2,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-interesting-hypatia","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:38:03.447232Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:38:07.800057Z","enable_http3":false,"id":"095c3100-228e-423a-9a76-44151cd7bf78","inbound_port":50001,"lb":{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":2,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[{"created_at":"2023-06-29T12:25:04.403265Z","id":"6dfc62f6-2155-4c4c-8726-1d5613cf1754","ip_address":"10.76.82.85","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:38:08.367411289Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"},"name":"tf-frontend-datasource1","timeout_client":null,"updated_at":"2023-06-29T13:38:08.323989505Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:19:01.079083Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"da7ba5df-6c6e-4961-8b7b-2293b5660b18","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":2,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-keen-aryabhata","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:19:01.079083Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:19:05.481139Z","enable_http3":false,"id":"9e448829-3a99-4ce2-a90e-7508011f6c3f","inbound_port":50001,"lb":{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":2,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[{"created_at":"2023-07-03T20:17:24.721494Z","id":"98f9070c-36de-42b2-8d02-6624598ed8b6","ip_address":"10.74.110.67","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:19:06.066263359Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"},"name":"tf-frontend-datasource1","timeout_client":null,"updated_at":"2023-07-03T20:19:06.040001062Z"}' headers: Content-Length: - - "3137" + - "3047" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:08 GMT + - Mon, 03 Jul 2023 20:19:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1298,7 +1298,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f809c9e5-1bae-494b-96c8-7b4d6df58a3b + - 5aa9d6f8-6344-48e1-9437-dd2b3aaada69 status: 200 OK code: 200 duration: "" @@ -1309,19 +1309,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/095c3100-228e-423a-9a76-44151cd7bf78/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/9e448829-3a99-4ce2-a90e-7508011f6c3f/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:08 GMT + - Mon, 03 Jul 2023 20:19:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1331,7 +1331,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48865b0d-a58f-454a-9b1d-bd2148147c82 + - 1247c080-ed07-4d1c-a471-cdad7d6e7369 status: 200 OK code: 200 duration: "" @@ -1342,19 +1342,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/095c3100-228e-423a-9a76-44151cd7bf78 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/9e448829-3a99-4ce2-a90e-7508011f6c3f method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:38:03.447232Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"51db71af-2b0b-49b4-9d55-3da2986c186f","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":2,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-interesting-hypatia","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:38:03.447232Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:38:07.800057Z","enable_http3":false,"id":"095c3100-228e-423a-9a76-44151cd7bf78","inbound_port":50001,"lb":{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":2,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"},"name":"tf-frontend-datasource1","timeout_client":null,"updated_at":"2023-06-29T13:38:08.323990Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:19:01.079083Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"da7ba5df-6c6e-4961-8b7b-2293b5660b18","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":2,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-keen-aryabhata","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:19:01.079083Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:19:05.481139Z","enable_http3":false,"id":"9e448829-3a99-4ce2-a90e-7508011f6c3f","inbound_port":50001,"lb":{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":2,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"},"name":"tf-frontend-datasource1","timeout_client":null,"updated_at":"2023-07-03T20:19:06.040001Z"}' headers: Content-Length: - - "2912" + - "2827" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:08 GMT + - Mon, 03 Jul 2023 20:19:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1364,7 +1364,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ccef997-a496-4256-b00b-cdfdad560564 + - ae3eabc7-6057-45de-9845-de3df340f887 status: 200 OK code: 200 duration: "" @@ -1375,19 +1375,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/095c3100-228e-423a-9a76-44151cd7bf78/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/9e448829-3a99-4ce2-a90e-7508011f6c3f/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:08 GMT + - Mon, 03 Jul 2023 20:19:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1397,7 +1397,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5dd15fb-ffbc-4aa7-8193-caa2056022b2 + - fda4213e-5917-47ed-aee4-b7a94b4e3d8f status: 200 OK code: 200 duration: "" @@ -1408,19 +1408,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43/frontends?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be/frontends?order_by=created_at_asc method: GET response: - body: '{"frontends":[{"backend":{"created_at":"2023-06-29T13:38:03.447232Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"51db71af-2b0b-49b4-9d55-3da2986c186f","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-interesting-hypatia","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:38:03.447232Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:38:04.107045Z","enable_http3":false,"id":"737c8a14-81b5-49ec-ab57-5f7e3f29f464","inbound_port":50000,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-frontend-datasource0","timeout_client":null,"updated_at":"2023-06-29T13:38:04.633273Z"},{"backend":{"created_at":"2023-06-29T13:38:03.447232Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"51db71af-2b0b-49b4-9d55-3da2986c186f","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-interesting-hypatia","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:38:03.447232Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:38:07.800057Z","enable_http3":false,"id":"095c3100-228e-423a-9a76-44151cd7bf78","inbound_port":50001,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-frontend-datasource1","timeout_client":null,"updated_at":"2023-06-29T13:38:08.323990Z"}],"total_count":2}' + body: '{"frontends":[{"backend":{"created_at":"2023-07-03T20:19:01.079083Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"da7ba5df-6c6e-4961-8b7b-2293b5660b18","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-keen-aryabhata","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:19:01.079083Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:19:01.734306Z","enable_http3":false,"id":"8454b749-4c8b-4519-be22-d181a6512301","inbound_port":50000,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-frontend-datasource0","timeout_client":null,"updated_at":"2023-07-03T20:19:02.124570Z"},{"backend":{"created_at":"2023-07-03T20:19:01.079083Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"da7ba5df-6c6e-4961-8b7b-2293b5660b18","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-keen-aryabhata","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:19:01.079083Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:19:05.481139Z","enable_http3":false,"id":"9e448829-3a99-4ce2-a90e-7508011f6c3f","inbound_port":50001,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-frontend-datasource1","timeout_client":null,"updated_at":"2023-07-03T20:19:06.040001Z"}],"total_count":2}' headers: Content-Length: - - "4047" + - "3887" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:08 GMT + - Mon, 03 Jul 2023 20:19:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1430,7 +1430,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7c69c2a-75e4-432c-a1d9-46b93e9ca7be + - 9a23a488-33e2-4091-afd0-821e1c347f6a status: 200 OK code: 200 duration: "" @@ -1441,19 +1441,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43/frontends?name=tf-frontend-datasource&order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be/frontends?name=tf-frontend-datasource&order_by=created_at_asc method: GET response: - body: '{"frontends":[{"backend":{"created_at":"2023-06-29T13:38:03.447232Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"51db71af-2b0b-49b4-9d55-3da2986c186f","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-interesting-hypatia","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:38:03.447232Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:38:04.107045Z","enable_http3":false,"id":"737c8a14-81b5-49ec-ab57-5f7e3f29f464","inbound_port":50000,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-frontend-datasource0","timeout_client":null,"updated_at":"2023-06-29T13:38:04.633273Z"},{"backend":{"created_at":"2023-06-29T13:38:03.447232Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"51db71af-2b0b-49b4-9d55-3da2986c186f","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-interesting-hypatia","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:38:03.447232Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:38:07.800057Z","enable_http3":false,"id":"095c3100-228e-423a-9a76-44151cd7bf78","inbound_port":50001,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-frontend-datasource1","timeout_client":null,"updated_at":"2023-06-29T13:38:08.323990Z"}],"total_count":2}' + body: '{"frontends":[{"backend":{"created_at":"2023-07-03T20:19:01.079083Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"da7ba5df-6c6e-4961-8b7b-2293b5660b18","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-keen-aryabhata","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:19:01.079083Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:19:01.734306Z","enable_http3":false,"id":"8454b749-4c8b-4519-be22-d181a6512301","inbound_port":50000,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-frontend-datasource0","timeout_client":null,"updated_at":"2023-07-03T20:19:02.124570Z"},{"backend":{"created_at":"2023-07-03T20:19:01.079083Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"da7ba5df-6c6e-4961-8b7b-2293b5660b18","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-keen-aryabhata","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:19:01.079083Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:19:05.481139Z","enable_http3":false,"id":"9e448829-3a99-4ce2-a90e-7508011f6c3f","inbound_port":50001,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-frontend-datasource1","timeout_client":null,"updated_at":"2023-07-03T20:19:06.040001Z"}],"total_count":2}' headers: Content-Length: - - "4047" + - "3887" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:08 GMT + - Mon, 03 Jul 2023 20:19:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1463,7 +1463,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e8b5c76-b1fb-4a71-8956-166b34a01d97 + - 4753b722-c697-4259-b85a-901e61081945 status: 200 OK code: 200 duration: "" @@ -1474,19 +1474,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43/frontends?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be/frontends?order_by=created_at_asc method: GET response: - body: '{"frontends":[{"backend":{"created_at":"2023-06-29T13:38:03.447232Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"51db71af-2b0b-49b4-9d55-3da2986c186f","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-interesting-hypatia","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:38:03.447232Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:38:04.107045Z","enable_http3":false,"id":"737c8a14-81b5-49ec-ab57-5f7e3f29f464","inbound_port":50000,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-frontend-datasource0","timeout_client":null,"updated_at":"2023-06-29T13:38:04.633273Z"},{"backend":{"created_at":"2023-06-29T13:38:03.447232Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"51db71af-2b0b-49b4-9d55-3da2986c186f","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-interesting-hypatia","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:38:03.447232Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:38:07.800057Z","enable_http3":false,"id":"095c3100-228e-423a-9a76-44151cd7bf78","inbound_port":50001,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-frontend-datasource1","timeout_client":null,"updated_at":"2023-06-29T13:38:08.323990Z"}],"total_count":2}' + body: '{"frontends":[{"backend":{"created_at":"2023-07-03T20:19:01.079083Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"da7ba5df-6c6e-4961-8b7b-2293b5660b18","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-keen-aryabhata","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:19:01.079083Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:19:01.734306Z","enable_http3":false,"id":"8454b749-4c8b-4519-be22-d181a6512301","inbound_port":50000,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-frontend-datasource0","timeout_client":null,"updated_at":"2023-07-03T20:19:02.124570Z"},{"backend":{"created_at":"2023-07-03T20:19:01.079083Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"da7ba5df-6c6e-4961-8b7b-2293b5660b18","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-keen-aryabhata","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:19:01.079083Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:19:05.481139Z","enable_http3":false,"id":"9e448829-3a99-4ce2-a90e-7508011f6c3f","inbound_port":50001,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-frontend-datasource1","timeout_client":null,"updated_at":"2023-07-03T20:19:06.040001Z"}],"total_count":2}' headers: Content-Length: - - "4047" + - "3887" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:09 GMT + - Mon, 03 Jul 2023 20:19:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1496,7 +1496,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3c6bb94-a233-44cc-88fa-14ac13920e15 + - fc7a3df0-41b1-4173-bad2-526967117c55 status: 200 OK code: 200 duration: "" @@ -1507,19 +1507,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43/frontends?name=tf-frontend-datasource&order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be/frontends?name=tf-frontend-datasource&order_by=created_at_asc method: GET response: - body: '{"frontends":[{"backend":{"created_at":"2023-06-29T13:38:03.447232Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"51db71af-2b0b-49b4-9d55-3da2986c186f","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-interesting-hypatia","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:38:03.447232Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:38:04.107045Z","enable_http3":false,"id":"737c8a14-81b5-49ec-ab57-5f7e3f29f464","inbound_port":50000,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-frontend-datasource0","timeout_client":null,"updated_at":"2023-06-29T13:38:04.633273Z"},{"backend":{"created_at":"2023-06-29T13:38:03.447232Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"51db71af-2b0b-49b4-9d55-3da2986c186f","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-interesting-hypatia","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:38:03.447232Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:38:07.800057Z","enable_http3":false,"id":"095c3100-228e-423a-9a76-44151cd7bf78","inbound_port":50001,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-frontend-datasource1","timeout_client":null,"updated_at":"2023-06-29T13:38:08.323990Z"}],"total_count":2}' + body: '{"frontends":[{"backend":{"created_at":"2023-07-03T20:19:01.079083Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"da7ba5df-6c6e-4961-8b7b-2293b5660b18","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-keen-aryabhata","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:19:01.079083Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:19:01.734306Z","enable_http3":false,"id":"8454b749-4c8b-4519-be22-d181a6512301","inbound_port":50000,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-frontend-datasource0","timeout_client":null,"updated_at":"2023-07-03T20:19:02.124570Z"},{"backend":{"created_at":"2023-07-03T20:19:01.079083Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"da7ba5df-6c6e-4961-8b7b-2293b5660b18","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-keen-aryabhata","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:19:01.079083Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:19:05.481139Z","enable_http3":false,"id":"9e448829-3a99-4ce2-a90e-7508011f6c3f","inbound_port":50001,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-frontend-datasource1","timeout_client":null,"updated_at":"2023-07-03T20:19:06.040001Z"}],"total_count":2}' headers: Content-Length: - - "4047" + - "3887" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:09 GMT + - Mon, 03 Jul 2023 20:19:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1529,7 +1529,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d62487b4-3b3f-46cd-8666-e820709aaf36 + - 5e2ce780-feaf-4dfb-b3b1-994b0cf2f25e status: 200 OK code: 200 duration: "" @@ -1540,19 +1540,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "319" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:09 GMT + - Mon, 03 Jul 2023 20:19:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1562,7 +1562,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60e3869a-4d04-4408-a157-9f5289601bcb + - 173912b2-c963-4e1f-85fb-d979f4be8fe5 status: 200 OK code: 200 duration: "" @@ -1573,19 +1573,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":2,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[{"created_at":"2023-06-29T12:25:04.403265Z","id":"6dfc62f6-2155-4c4c-8726-1d5613cf1754","ip_address":"10.76.82.85","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:38:08.623326Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":2,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[{"created_at":"2023-07-03T20:17:24.721494Z","id":"98f9070c-36de-42b2-8d02-6624598ed8b6","ip_address":"10.74.110.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:19:06.310356Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:09 GMT + - Mon, 03 Jul 2023 20:19:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1595,7 +1595,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04393dd9-e773-45ed-a6a1-d2e6ef3e5ac3 + - b929f70d-ceed-4ce9-b8b6-297ed8a11d7f status: 200 OK code: 200 duration: "" @@ -1606,19 +1606,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":2,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[{"created_at":"2023-06-29T12:25:04.403265Z","id":"6dfc62f6-2155-4c4c-8726-1d5613cf1754","ip_address":"10.76.82.85","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:38:08.623326Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":2,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[{"created_at":"2023-07-03T20:17:24.721494Z","id":"98f9070c-36de-42b2-8d02-6624598ed8b6","ip_address":"10.74.110.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:19:06.310356Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:09 GMT + - Mon, 03 Jul 2023 20:19:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1628,7 +1628,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2a7f167-e10e-4dc3-8b3f-350f3b397304 + - 5c4896a9-4e50-4e9b-b210-1f5cfed766ab status: 200 OK code: 200 duration: "" @@ -1639,19 +1639,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:09 GMT + - Mon, 03 Jul 2023 20:19:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1661,7 +1661,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 119e94b4-049e-419f-a467-4c0cb43e02d4 + - 959e45a6-ee17-428d-823e-9e545ad31fb7 status: 200 OK code: 200 duration: "" @@ -1672,19 +1672,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/51db71af-2b0b-49b4-9d55-3da2986c186f + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/da7ba5df-6c6e-4961-8b7b-2293b5660b18 method: GET response: - body: '{"created_at":"2023-06-29T13:38:03.447232Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"51db71af-2b0b-49b4-9d55-3da2986c186f","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":2,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[{"created_at":"2023-06-29T12:25:04.403265Z","id":"6dfc62f6-2155-4c4c-8726-1d5613cf1754","ip_address":"10.76.82.85","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:38:08.623326Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-interesting-hypatia","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:38:03.447232Z"}' + body: '{"created_at":"2023-07-03T20:19:01.079083Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"da7ba5df-6c6e-4961-8b7b-2293b5660b18","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":2,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[{"created_at":"2023-07-03T20:17:24.721494Z","id":"98f9070c-36de-42b2-8d02-6624598ed8b6","ip_address":"10.74.110.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:19:06.310356Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-keen-aryabhata","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:19:01.079083Z"}' headers: Content-Length: - - "1960" + - "1902" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:09 GMT + - Mon, 03 Jul 2023 20:19:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1694,7 +1694,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 302e98d6-e708-42a0-8b42-5f0b7d86af0b + - 6c3c2bd5-4f81-4a01-8e50-343f158ac2e6 status: 200 OK code: 200 duration: "" @@ -1705,19 +1705,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":2,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[{"created_at":"2023-06-29T12:25:04.403265Z","id":"6dfc62f6-2155-4c4c-8726-1d5613cf1754","ip_address":"10.76.82.85","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:38:08.623326Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":2,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[{"created_at":"2023-07-03T20:17:24.721494Z","id":"98f9070c-36de-42b2-8d02-6624598ed8b6","ip_address":"10.74.110.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:19:06.310356Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:09 GMT + - Mon, 03 Jul 2023 20:19:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1727,7 +1727,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86fbb267-64d9-46f4-b5cf-c2025fca3717 + - 0af5c309-cf6a-41c0-b451-baa88f0d8ce6 status: 200 OK code: 200 duration: "" @@ -1738,19 +1738,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/737c8a14-81b5-49ec-ab57-5f7e3f29f464 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/8454b749-4c8b-4519-be22-d181a6512301 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:38:03.447232Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"51db71af-2b0b-49b4-9d55-3da2986c186f","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":2,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-interesting-hypatia","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:38:03.447232Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:38:04.107045Z","enable_http3":false,"id":"737c8a14-81b5-49ec-ab57-5f7e3f29f464","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":2,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"},"name":"tf-frontend-datasource0","timeout_client":null,"updated_at":"2023-06-29T13:38:04.633273Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:19:01.079083Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"da7ba5df-6c6e-4961-8b7b-2293b5660b18","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":2,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-keen-aryabhata","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:19:01.079083Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:19:01.734306Z","enable_http3":false,"id":"8454b749-4c8b-4519-be22-d181a6512301","inbound_port":50000,"lb":{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":2,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"},"name":"tf-frontend-datasource0","timeout_client":null,"updated_at":"2023-07-03T20:19:02.124570Z"}' headers: Content-Length: - - "2912" + - "2827" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:09 GMT + - Mon, 03 Jul 2023 20:19:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1760,7 +1760,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f978525-0525-4178-bb5b-1130d45c5bf8 + - f93bd433-3875-4049-96fd-38c17693db81 status: 200 OK code: 200 duration: "" @@ -1771,19 +1771,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/095c3100-228e-423a-9a76-44151cd7bf78 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/9e448829-3a99-4ce2-a90e-7508011f6c3f method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:38:03.447232Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"51db71af-2b0b-49b4-9d55-3da2986c186f","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":2,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-interesting-hypatia","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:38:03.447232Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:38:07.800057Z","enable_http3":false,"id":"095c3100-228e-423a-9a76-44151cd7bf78","inbound_port":50001,"lb":{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":2,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"},"name":"tf-frontend-datasource1","timeout_client":null,"updated_at":"2023-06-29T13:38:08.323990Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:19:01.079083Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"da7ba5df-6c6e-4961-8b7b-2293b5660b18","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":2,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-keen-aryabhata","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:19:01.079083Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:19:05.481139Z","enable_http3":false,"id":"9e448829-3a99-4ce2-a90e-7508011f6c3f","inbound_port":50001,"lb":{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":2,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"},"name":"tf-frontend-datasource1","timeout_client":null,"updated_at":"2023-07-03T20:19:06.040001Z"}' headers: Content-Length: - - "2912" + - "2827" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:09 GMT + - Mon, 03 Jul 2023 20:19:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1793,7 +1793,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff216ecd-aa79-4d91-a430-2f236de15029 + - 7615abb1-7659-463a-ab06-33bb1b597de2 status: 200 OK code: 200 duration: "" @@ -1804,19 +1804,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/737c8a14-81b5-49ec-ab57-5f7e3f29f464/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/8454b749-4c8b-4519-be22-d181a6512301/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:10 GMT + - Mon, 03 Jul 2023 20:19:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1826,7 +1826,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 193b45d1-420c-43b9-b5af-3d1d268304e7 + - 4d0f2bac-0c51-4531-9a40-6b4600bdaa61 status: 200 OK code: 200 duration: "" @@ -1837,19 +1837,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/095c3100-228e-423a-9a76-44151cd7bf78/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/9e448829-3a99-4ce2-a90e-7508011f6c3f/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:10 GMT + - Mon, 03 Jul 2023 20:19:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1859,7 +1859,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5403be6c-ce4b-49f3-b2f0-3151b9ed78ed + - c2c25ea3-77aa-4831-8055-6525e103cfc1 status: 200 OK code: 200 duration: "" @@ -1870,19 +1870,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43/frontends?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be/frontends?name=tf-frontend-datasource&order_by=created_at_asc method: GET response: - body: '{"frontends":[{"backend":{"created_at":"2023-06-29T13:38:03.447232Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"51db71af-2b0b-49b4-9d55-3da2986c186f","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-interesting-hypatia","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:38:03.447232Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:38:04.107045Z","enable_http3":false,"id":"737c8a14-81b5-49ec-ab57-5f7e3f29f464","inbound_port":50000,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-frontend-datasource0","timeout_client":null,"updated_at":"2023-06-29T13:38:04.633273Z"},{"backend":{"created_at":"2023-06-29T13:38:03.447232Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"51db71af-2b0b-49b4-9d55-3da2986c186f","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-interesting-hypatia","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:38:03.447232Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:38:07.800057Z","enable_http3":false,"id":"095c3100-228e-423a-9a76-44151cd7bf78","inbound_port":50001,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-frontend-datasource1","timeout_client":null,"updated_at":"2023-06-29T13:38:08.323990Z"}],"total_count":2}' + body: '{"frontends":[{"backend":{"created_at":"2023-07-03T20:19:01.079083Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"da7ba5df-6c6e-4961-8b7b-2293b5660b18","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-keen-aryabhata","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:19:01.079083Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:19:01.734306Z","enable_http3":false,"id":"8454b749-4c8b-4519-be22-d181a6512301","inbound_port":50000,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-frontend-datasource0","timeout_client":null,"updated_at":"2023-07-03T20:19:02.124570Z"},{"backend":{"created_at":"2023-07-03T20:19:01.079083Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"da7ba5df-6c6e-4961-8b7b-2293b5660b18","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-keen-aryabhata","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:19:01.079083Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:19:05.481139Z","enable_http3":false,"id":"9e448829-3a99-4ce2-a90e-7508011f6c3f","inbound_port":50001,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-frontend-datasource1","timeout_client":null,"updated_at":"2023-07-03T20:19:06.040001Z"}],"total_count":2}' headers: Content-Length: - - "4047" + - "3887" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:10 GMT + - Mon, 03 Jul 2023 20:19:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1892,7 +1892,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3183c50a-3486-419a-828e-74daca47cdfa + - b431448d-a6a1-4122-af89-bbbb83ea0475 status: 200 OK code: 200 duration: "" @@ -1903,19 +1903,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43/frontends?name=tf-frontend-datasource&order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be/frontends?order_by=created_at_asc method: GET response: - body: '{"frontends":[{"backend":{"created_at":"2023-06-29T13:38:03.447232Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"51db71af-2b0b-49b4-9d55-3da2986c186f","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-interesting-hypatia","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:38:03.447232Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:38:04.107045Z","enable_http3":false,"id":"737c8a14-81b5-49ec-ab57-5f7e3f29f464","inbound_port":50000,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-frontend-datasource0","timeout_client":null,"updated_at":"2023-06-29T13:38:04.633273Z"},{"backend":{"created_at":"2023-06-29T13:38:03.447232Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"51db71af-2b0b-49b4-9d55-3da2986c186f","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-interesting-hypatia","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:38:03.447232Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:38:07.800057Z","enable_http3":false,"id":"095c3100-228e-423a-9a76-44151cd7bf78","inbound_port":50001,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-frontend-datasource1","timeout_client":null,"updated_at":"2023-06-29T13:38:08.323990Z"}],"total_count":2}' + body: '{"frontends":[{"backend":{"created_at":"2023-07-03T20:19:01.079083Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"da7ba5df-6c6e-4961-8b7b-2293b5660b18","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-keen-aryabhata","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:19:01.079083Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:19:01.734306Z","enable_http3":false,"id":"8454b749-4c8b-4519-be22-d181a6512301","inbound_port":50000,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-frontend-datasource0","timeout_client":null,"updated_at":"2023-07-03T20:19:02.124570Z"},{"backend":{"created_at":"2023-07-03T20:19:01.079083Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"da7ba5df-6c6e-4961-8b7b-2293b5660b18","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-keen-aryabhata","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:19:01.079083Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:19:05.481139Z","enable_http3":false,"id":"9e448829-3a99-4ce2-a90e-7508011f6c3f","inbound_port":50001,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-frontend-datasource1","timeout_client":null,"updated_at":"2023-07-03T20:19:06.040001Z"}],"total_count":2}' headers: Content-Length: - - "4047" + - "3887" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:10 GMT + - Mon, 03 Jul 2023 20:19:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1925,7 +1925,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16fdc3f3-af4e-4e51-b528-7d77c8e3e537 + - 3642a0f6-ea2f-4594-84ba-bc3fb5d0d7d5 status: 200 OK code: 200 duration: "" @@ -1936,19 +1936,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43/frontends?name=tf-frontend-datasource&order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be/frontends?name=tf-frontend-datasource&order_by=created_at_asc method: GET response: - body: '{"frontends":[{"backend":{"created_at":"2023-06-29T13:38:03.447232Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"51db71af-2b0b-49b4-9d55-3da2986c186f","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-interesting-hypatia","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:38:03.447232Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:38:04.107045Z","enable_http3":false,"id":"737c8a14-81b5-49ec-ab57-5f7e3f29f464","inbound_port":50000,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-frontend-datasource0","timeout_client":null,"updated_at":"2023-06-29T13:38:04.633273Z"},{"backend":{"created_at":"2023-06-29T13:38:03.447232Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"51db71af-2b0b-49b4-9d55-3da2986c186f","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-interesting-hypatia","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:38:03.447232Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:38:07.800057Z","enable_http3":false,"id":"095c3100-228e-423a-9a76-44151cd7bf78","inbound_port":50001,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-frontend-datasource1","timeout_client":null,"updated_at":"2023-06-29T13:38:08.323990Z"}],"total_count":2}' + body: '{"frontends":[{"backend":{"created_at":"2023-07-03T20:19:01.079083Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"da7ba5df-6c6e-4961-8b7b-2293b5660b18","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-keen-aryabhata","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:19:01.079083Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:19:01.734306Z","enable_http3":false,"id":"8454b749-4c8b-4519-be22-d181a6512301","inbound_port":50000,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-frontend-datasource0","timeout_client":null,"updated_at":"2023-07-03T20:19:02.124570Z"},{"backend":{"created_at":"2023-07-03T20:19:01.079083Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"da7ba5df-6c6e-4961-8b7b-2293b5660b18","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-keen-aryabhata","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:19:01.079083Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:19:05.481139Z","enable_http3":false,"id":"9e448829-3a99-4ce2-a90e-7508011f6c3f","inbound_port":50001,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-frontend-datasource1","timeout_client":null,"updated_at":"2023-07-03T20:19:06.040001Z"}],"total_count":2}' headers: Content-Length: - - "4047" + - "3887" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:10 GMT + - Mon, 03 Jul 2023 20:19:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1958,7 +1958,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15f0841a-6158-4037-a8ab-aa35378fc436 + - f111d77d-fa16-4913-bc45-e12fbca1f229 status: 200 OK code: 200 duration: "" @@ -1969,19 +1969,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43/frontends?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be/frontends?order_by=created_at_asc method: GET response: - body: '{"frontends":[{"backend":{"created_at":"2023-06-29T13:38:03.447232Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"51db71af-2b0b-49b4-9d55-3da2986c186f","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-interesting-hypatia","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:38:03.447232Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:38:04.107045Z","enable_http3":false,"id":"737c8a14-81b5-49ec-ab57-5f7e3f29f464","inbound_port":50000,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-frontend-datasource0","timeout_client":null,"updated_at":"2023-06-29T13:38:04.633273Z"},{"backend":{"created_at":"2023-06-29T13:38:03.447232Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"51db71af-2b0b-49b4-9d55-3da2986c186f","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-interesting-hypatia","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:38:03.447232Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:38:07.800057Z","enable_http3":false,"id":"095c3100-228e-423a-9a76-44151cd7bf78","inbound_port":50001,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-frontend-datasource1","timeout_client":null,"updated_at":"2023-06-29T13:38:08.323990Z"}],"total_count":2}' + body: '{"frontends":[{"backend":{"created_at":"2023-07-03T20:19:01.079083Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"da7ba5df-6c6e-4961-8b7b-2293b5660b18","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-keen-aryabhata","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:19:01.079083Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:19:01.734306Z","enable_http3":false,"id":"8454b749-4c8b-4519-be22-d181a6512301","inbound_port":50000,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-frontend-datasource0","timeout_client":null,"updated_at":"2023-07-03T20:19:02.124570Z"},{"backend":{"created_at":"2023-07-03T20:19:01.079083Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"da7ba5df-6c6e-4961-8b7b-2293b5660b18","ignore_ssl_server_verify":false,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-keen-aryabhata","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:19:01.079083Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:19:05.481139Z","enable_http3":false,"id":"9e448829-3a99-4ce2-a90e-7508011f6c3f","inbound_port":50001,"lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"tf-frontend-datasource1","timeout_client":null,"updated_at":"2023-07-03T20:19:06.040001Z"}],"total_count":2}' headers: Content-Length: - - "4047" + - "3887" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:10 GMT + - Mon, 03 Jul 2023 20:19:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1991,7 +1991,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee790091-add3-4c7f-98d6-e37101c76fd2 + - 961a2dbd-babd-4f15-bc13-ffd5a96e61a9 status: 200 OK code: 200 duration: "" @@ -2002,7 +2002,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/095c3100-228e-423a-9a76-44151cd7bf78 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/9e448829-3a99-4ce2-a90e-7508011f6c3f method: DELETE response: body: "" @@ -2012,7 +2012,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:10 GMT + - Mon, 03 Jul 2023 20:19:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2022,7 +2022,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8249fea-9929-4b63-8faf-35dbde69722b + - 70f74b18-0a32-458a-bb0d-122c4b9ae569 status: 204 No Content code: 204 duration: "" @@ -2033,7 +2033,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/737c8a14-81b5-49ec-ab57-5f7e3f29f464 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/8454b749-4c8b-4519-be22-d181a6512301 method: DELETE response: body: "" @@ -2043,7 +2043,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:10 GMT + - Mon, 03 Jul 2023 20:19:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2053,7 +2053,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 472de35b-11b4-4c75-a9cf-f20ed02adf1e + - 32d31e13-a07c-4dc6-b605-38382fa7c8dc status: 204 No Content code: 204 duration: "" @@ -2064,19 +2064,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":0,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[{"created_at":"2023-06-29T12:25:04.403265Z","id":"6dfc62f6-2155-4c4c-8726-1d5613cf1754","ip_address":"10.76.82.85","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:38:10.849559Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":0,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[{"created_at":"2023-07-03T20:17:24.721494Z","id":"98f9070c-36de-42b2-8d02-6624598ed8b6","ip_address":"10.74.110.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:19:09.074638Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:11 GMT + - Mon, 03 Jul 2023 20:19:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2086,7 +2086,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6de7ab14-7ea6-4ae7-acf6-652767d13276 + - b57151c3-9839-4bb0-93fb-c4c960388a26 status: 200 OK code: 200 duration: "" @@ -2097,19 +2097,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":0,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[{"created_at":"2023-06-29T12:25:04.403265Z","id":"6dfc62f6-2155-4c4c-8726-1d5613cf1754","ip_address":"10.76.82.85","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:38:10.849559Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":0,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[{"created_at":"2023-07-03T20:17:24.721494Z","id":"98f9070c-36de-42b2-8d02-6624598ed8b6","ip_address":"10.74.110.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:19:09.074638Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:11 GMT + - Mon, 03 Jul 2023 20:19:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2119,7 +2119,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d5dcd328-0384-4d33-bf54-1ee8f36175ff + - 93de757b-e6d8-45b9-b1c9-3bf64d50e762 status: 200 OK code: 200 duration: "" @@ -2130,19 +2130,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":0,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[{"created_at":"2023-06-29T12:25:04.403265Z","id":"6dfc62f6-2155-4c4c-8726-1d5613cf1754","ip_address":"10.76.82.85","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:38:11.073778Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":0,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[{"created_at":"2023-07-03T20:17:24.721494Z","id":"98f9070c-36de-42b2-8d02-6624598ed8b6","ip_address":"10.74.110.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:19:09.074638Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:11 GMT + - Mon, 03 Jul 2023 20:19:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2152,7 +2152,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c01322a9-b897-4082-ace6-29877e9dacbd + - c0348432-e6f7-4ec1-b3a3-4d47b62c237f status: 200 OK code: 200 duration: "" @@ -2163,7 +2163,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/51db71af-2b0b-49b4-9d55-3da2986c186f + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/da7ba5df-6c6e-4961-8b7b-2293b5660b18 method: DELETE response: body: "" @@ -2173,7 +2173,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:11 GMT + - Mon, 03 Jul 2023 20:19:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2183,7 +2183,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0cbc4922-2735-4f95-9062-968b09816add + - 0d272c05-dcf6-4e85-98a8-1387bfff38bf status: 204 No Content code: 204 duration: "" @@ -2194,19 +2194,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":0,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[{"created_at":"2023-06-29T12:25:04.403265Z","id":"6dfc62f6-2155-4c4c-8726-1d5613cf1754","ip_address":"10.76.82.85","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:38:11.324876Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":0,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[{"created_at":"2023-07-03T20:17:24.721494Z","id":"98f9070c-36de-42b2-8d02-6624598ed8b6","ip_address":"10.74.110.67","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:19:09.410776Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:11 GMT + - Mon, 03 Jul 2023 20:19:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2216,7 +2216,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ebe7a3f-adc0-495e-868a-03749c367c0c + - e54dd8e3-d486-404d-b883-bee9021e8179 status: 200 OK code: 200 duration: "" @@ -2227,19 +2227,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":0,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[{"created_at":"2023-06-29T12:25:04.403265Z","id":"6dfc62f6-2155-4c4c-8726-1d5613cf1754","ip_address":"10.76.82.85","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:38:11.572878Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:37:35.077018Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":0,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[{"created_at":"2023-07-03T20:17:24.721494Z","id":"98f9070c-36de-42b2-8d02-6624598ed8b6","ip_address":"10.74.110.67","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:19:09.410776Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:18:32.627294Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:11 GMT + - Mon, 03 Jul 2023 20:19:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2249,7 +2249,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c8aa0712-1a58-4732-bbe7-625f23ee49e4 + - 474e854a-6cb1-4b7f-b099-78d692d4d9d0 status: 200 OK code: 200 duration: "" @@ -2260,7 +2260,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43?release_ip=false + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be?release_ip=false method: DELETE response: body: "" @@ -2270,7 +2270,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:11 GMT + - Mon, 03 Jul 2023 20:19:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2280,7 +2280,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab224ee3-2cd4-42bb-8603-6ba2a8d07d0b + - 5c47f0fd-66e2-45d5-864a-98b133379388 status: 204 No Content code: 204 duration: "" @@ -2291,19 +2291,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:37:32.780977Z","description":"","frontend_count":0,"id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","instances":[{"created_at":"2023-06-29T12:25:04.403265Z","id":"6dfc62f6-2155-4c4c-8726-1d5613cf1754","ip_address":"10.76.82.85","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:38:11.572878Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"2c5915f0-41a0-4f8e-a813-2afb64697d43","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:38:11.757295Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:18:30.303219Z","description":"","frontend_count":0,"id":"a6ef5464-8f83-428f-9707-2b71f23c62be","instances":[{"created_at":"2023-07-03T20:17:24.721494Z","id":"98f9070c-36de-42b2-8d02-6624598ed8b6","ip_address":"10.74.110.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:19:09.671291Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"a6ef5464-8f83-428f-9707-2b71f23c62be","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:19:09.744439Z","zone":"fr-par-1"}' headers: Content-Length: - - "1095" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:11 GMT + - Mon, 03 Jul 2023 20:19:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2313,7 +2313,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a61ceec-3456-48ff-aad1-28f430120b1c + - 85e2962f-171a-4c89-a847-562ed095a05f status: 200 OK code: 200 duration: "" @@ -2324,7 +2324,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be method: GET response: body: '{"message":"lbs not Found"}' @@ -2336,7 +2336,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:42 GMT + - Mon, 03 Jul 2023 20:19:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2346,7 +2346,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e7ecd92-f2b1-450b-a4dd-fb50597f59b4 + - de5de70f-95b5-45cb-887d-e7591f5dccc2 status: 404 Not Found code: 404 duration: "" @@ -2357,7 +2357,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be method: GET response: body: '{"message":"lbs not Found"}' @@ -2369,7 +2369,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:42 GMT + - Mon, 03 Jul 2023 20:19:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2379,7 +2379,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e026c4a-9bb6-4adf-ad2a-4674a5ca5a6d + - 3e60610d-1c9a-4c20-9038-1e1dee639181 status: 404 Not Found code: 404 duration: "" @@ -2390,19 +2390,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "285" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:42 GMT + - Mon, 03 Jul 2023 20:19:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2412,7 +2412,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3e5014b-4c5e-4202-b738-039cfef8043a + - 85c6483f-80fd-434a-b0e6-f8e01def2e79 status: 200 OK code: 200 duration: "" @@ -2423,7 +2423,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: DELETE response: body: "" @@ -2433,7 +2433,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:42 GMT + - Mon, 03 Jul 2023 20:19:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2443,7 +2443,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67f51087-b234-46e7-9622-337c1bcd6203 + - e78459dc-c5e0-425f-8955-0bb06dd5ac39 status: 204 No Content code: 204 duration: "" @@ -2454,7 +2454,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c5915f0-41a0-4f8e-a813-2afb64697d43 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a6ef5464-8f83-428f-9707-2b71f23c62be method: GET response: body: '{"message":"lbs not Found"}' @@ -2466,7 +2466,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:38:42 GMT + - Mon, 03 Jul 2023 20:19:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2476,7 +2476,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74c9ef92-b544-4bec-8967-de1a8aabc510 + - 7860a052-4a3c-4b20-82f0-5a0943068ea3 status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/data-source-lb-route-basic.cassette.yaml b/scaleway/testdata/data-source-lb-route-basic.cassette.yaml index 9396d5ecba..e242e2cc5c 100644 --- a/scaleway/testdata/data-source-lb-route-basic.cassette.yaml +++ b/scaleway/testdata/data-source-lb-route-basic.cassette.yaml @@ -13,16 +13,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips method: POST response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "285" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:57 GMT + - Mon, 03 Jul 2023 20:11:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -32,7 +32,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 121a37e4-759b-4fcf-a903-d259e6cf0465 + - 7de39b6c-574b-412e-a9ce-43dc9ebcbc2f status: 200 OK code: 200 duration: "" @@ -43,19 +43,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "285" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:57 GMT + - Mon, 03 Jul 2023 20:11:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -65,12 +65,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 21777355-43b2-4a77-a415-fd692b052ddf + - 0a97e9de-56ca-4ee2-ab9c-c629d3175ce9 status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-lb","description":"","ip_id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","assign_flexible_ip":null,"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":"86df9ff8-7a77-492d-9b03-4f6205127499","assign_flexible_ip":null,"tags":null,"type":"lb-s","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' form: {} headers: Content-Type: @@ -81,16 +81,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs method: POST response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:30:57.465191698Z","description":"","frontend_count":0,"id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:30:57.465191698Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:11:37.465590424Z","description":"","frontend_count":0,"id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:11:37.465590424Z","zone":"fr-par-1"}' headers: Content-Length: - - "884" + - "862" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:57 GMT + - Mon, 03 Jul 2023 20:11:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -100,7 +100,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db758709-2d0c-4d61-9c2f-b1118177cc20 + - 83a73ca1-840b-4100-bd5a-6fcfd3e0e7c0 status: 200 OK code: 200 duration: "" @@ -111,19 +111,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b46c275b-a2c3-402b-b5f8-a6f217b3a2f1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8517f612-ebe8-4a76-b3dc-44f65a7760b8 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:30:57.465192Z","description":"","frontend_count":0,"id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:30:57.465192Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:11:37.465590Z","description":"","frontend_count":0,"id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","instances":[{"created_at":"2023-07-03T10:21:25.984045Z","id":"8c837036-90af-4b56-b10d-415d328b95b9","ip_address":"10.76.102.15","region":"fr-par","status":"unknown","updated_at":"2023-07-03T20:11:37.716142Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:11:37.727867Z","zone":"fr-par-1"}' headers: Content-Length: - - "878" + - "1069" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:57 GMT + - Mon, 03 Jul 2023 20:11:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -133,7 +133,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eefa2998-fdf9-4e8f-a835-8bf5c5450c63 + - 08e806ff-abb1-4d4f-b659-d11eb4155855 status: 200 OK code: 200 duration: "" @@ -144,19 +144,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b46c275b-a2c3-402b-b5f8-a6f217b3a2f1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8517f612-ebe8-4a76-b3dc-44f65a7760b8 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:30:57.465192Z","description":"","frontend_count":0,"id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","instances":[{"created_at":"2023-06-29T13:25:24.580243Z","id":"153233a1-49f7-4a9d-bf2f-bfa5cedb10cf","ip_address":"10.72.46.81","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:30:58.842520Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:31:00.245268Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:11:37.465590Z","description":"","frontend_count":0,"id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","instances":[{"created_at":"2023-07-03T10:21:25.984045Z","id":"8c837036-90af-4b56-b10d-415d328b95b9","ip_address":"10.76.102.15","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:11:38.551756Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:11:39.846854Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:27 GMT + - Mon, 03 Jul 2023 20:12:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -166,7 +166,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1c32671-a0ab-44d1-ae4c-54d3bab0f9cb + - 38d8b6c0-5ef1-4a0b-b27b-f323ea147b92 status: 200 OK code: 200 duration: "" @@ -177,19 +177,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b46c275b-a2c3-402b-b5f8-a6f217b3a2f1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8517f612-ebe8-4a76-b3dc-44f65a7760b8 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:30:57.465192Z","description":"","frontend_count":0,"id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","instances":[{"created_at":"2023-06-29T13:25:24.580243Z","id":"153233a1-49f7-4a9d-bf2f-bfa5cedb10cf","ip_address":"10.72.46.81","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:30:58.842520Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:31:00.245268Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:11:37.465590Z","description":"","frontend_count":0,"id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","instances":[{"created_at":"2023-07-03T10:21:25.984045Z","id":"8c837036-90af-4b56-b10d-415d328b95b9","ip_address":"10.76.102.15","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:11:38.551756Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:11:39.846854Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:27 GMT + - Mon, 03 Jul 2023 20:12:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -199,7 +199,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1fb3f60c-5d1c-4104-a88d-8044aa7d22bf + - a00d72aa-7045-4cea-9fa3-04b34e7218a4 status: 200 OK code: 200 duration: "" @@ -210,19 +210,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b46c275b-a2c3-402b-b5f8-a6f217b3a2f1/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8517f612-ebe8-4a76-b3dc-44f65a7760b8/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:27 GMT + - Mon, 03 Jul 2023 20:12:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -232,7 +232,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 407b0e94-cb61-4667-8fa9-d2e506fb34dd + - ca4ffb73-ff70-42dc-a010-0f690be56538 status: 200 OK code: 200 duration: "" @@ -243,19 +243,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b46c275b-a2c3-402b-b5f8-a6f217b3a2f1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8517f612-ebe8-4a76-b3dc-44f65a7760b8 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:30:57.465192Z","description":"","frontend_count":0,"id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","instances":[{"created_at":"2023-06-29T13:25:24.580243Z","id":"153233a1-49f7-4a9d-bf2f-bfa5cedb10cf","ip_address":"10.72.46.81","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:30:58.842520Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:31:00.245268Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:11:37.465590Z","description":"","frontend_count":0,"id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","instances":[{"created_at":"2023-07-03T10:21:25.984045Z","id":"8c837036-90af-4b56-b10d-415d328b95b9","ip_address":"10.76.102.15","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:11:38.551756Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:11:39.846854Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:27 GMT + - Mon, 03 Jul 2023 20:12:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -265,12 +265,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d68a562-81f0-47b6-8729-15bc8ead53f7 + - 83682058-5294-49c6-a7a2-d78ab9e74a7e status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-bkd-ecstatic-morse","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":null,"check_delay":60000,"check_timeout":30000},"server_ip":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":null,"max_retries":3,"max_connections":null,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' + body: '{"name":"tf-lb-bkd-competent-euler","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":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":null,"max_retries":3,"max_connections":null,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' form: {} headers: Content-Type: @@ -278,19 +278,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b46c275b-a2c3-402b-b5f8-a6f217b3a2f1/backends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8517f612-ebe8-4a76-b3dc-44f65a7760b8/backends method: POST response: - body: '{"created_at":"2023-06-29T13:31:28.071586795Z","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":null},"id":"92ff1ffc-621c-4bf3-8da0-f21fee3faa35","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:30:57.465192Z","description":"","frontend_count":0,"id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","instances":[{"created_at":"2023-06-29T13:25:24.580243Z","id":"153233a1-49f7-4a9d-bf2f-bfa5cedb10cf","ip_address":"10.72.46.81","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:31:28.098228555Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:31:00.245268Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-ecstatic-morse","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:31:28.071586795Z"}' + body: '{"created_at":"2023-07-03T20:12:08.207387400Z","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":"42814e6c-68dd-40a6-9ab8-c8400ff28f60","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:11:37.465590Z","description":"","frontend_count":0,"id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","instances":[{"created_at":"2023-07-03T10:21:25.984045Z","id":"8c837036-90af-4b56-b10d-415d328b95b9","ip_address":"10.76.102.15","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:12:08.248578879Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:11:39.846854Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-competent-euler","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:12:08.207387400Z"}' headers: Content-Length: - - "1965" + - "1913" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:28 GMT + - Mon, 03 Jul 2023 20:12:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -300,7 +300,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 686e8abf-7e62-4429-9edf-f4e177af43d4 + - d109c197-cb21-47c7-bdeb-e3396ca4934e status: 200 OK code: 200 duration: "" @@ -311,19 +311,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b46c275b-a2c3-402b-b5f8-a6f217b3a2f1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8517f612-ebe8-4a76-b3dc-44f65a7760b8 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:30:57.465192Z","description":"","frontend_count":0,"id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","instances":[{"created_at":"2023-06-29T13:25:24.580243Z","id":"153233a1-49f7-4a9d-bf2f-bfa5cedb10cf","ip_address":"10.72.46.81","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:31:28.098229Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:31:00.245268Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:11:37.465590Z","description":"","frontend_count":0,"id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","instances":[{"created_at":"2023-07-03T10:21:25.984045Z","id":"8c837036-90af-4b56-b10d-415d328b95b9","ip_address":"10.76.102.15","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:12:08.248579Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:11:39.846854Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:28 GMT + - Mon, 03 Jul 2023 20:12:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -333,7 +333,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 863ceb68-245e-4204-acb1-3718a7bd25b8 + - 8ac70096-cfa9-4339-b9c3-bd8b7ca74be3 status: 200 OK code: 200 duration: "" @@ -344,19 +344,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/92ff1ffc-621c-4bf3-8da0-f21fee3faa35 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/42814e6c-68dd-40a6-9ab8-c8400ff28f60 method: GET response: - body: '{"created_at":"2023-06-29T13:31:28.071587Z","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":null},"id":"92ff1ffc-621c-4bf3-8da0-f21fee3faa35","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:30:57.465192Z","description":"","frontend_count":0,"id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","instances":[{"created_at":"2023-06-29T13:25:24.580243Z","id":"153233a1-49f7-4a9d-bf2f-bfa5cedb10cf","ip_address":"10.72.46.81","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:31:28.098229Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:31:00.245268Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-ecstatic-morse","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:31:28.071587Z"}' + body: '{"created_at":"2023-07-03T20:12:08.207387Z","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":"42814e6c-68dd-40a6-9ab8-c8400ff28f60","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:11:37.465590Z","description":"","frontend_count":0,"id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","instances":[{"created_at":"2023-07-03T10:21:25.984045Z","id":"8c837036-90af-4b56-b10d-415d328b95b9","ip_address":"10.76.102.15","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:12:08.248579Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:11:39.846854Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-competent-euler","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:12:08.207387Z"}' headers: Content-Length: - - "1956" + - "1904" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:28 GMT + - Mon, 03 Jul 2023 20:12:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -366,7 +366,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e107fc15-aa93-4800-9040-9fec1de9224a + - 7087fab9-e9c7-49a4-9682-08fd3e3816a6 status: 200 OK code: 200 duration: "" @@ -377,19 +377,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b46c275b-a2c3-402b-b5f8-a6f217b3a2f1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8517f612-ebe8-4a76-b3dc-44f65a7760b8 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:30:57.465192Z","description":"","frontend_count":0,"id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","instances":[{"created_at":"2023-06-29T13:25:24.580243Z","id":"153233a1-49f7-4a9d-bf2f-bfa5cedb10cf","ip_address":"10.72.46.81","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:31:28.336455Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:31:00.245268Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:11:37.465590Z","description":"","frontend_count":0,"id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","instances":[{"created_at":"2023-07-03T10:21:25.984045Z","id":"8c837036-90af-4b56-b10d-415d328b95b9","ip_address":"10.76.102.15","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:12:08.535220Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:11:39.846854Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:28 GMT + - Mon, 03 Jul 2023 20:12:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -399,7 +399,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2de9d2ba-10ed-4dc1-9118-3e2bcbc375f0 + - b6568978-ab1f-4c81-bd61-1551914de240 status: 200 OK code: 200 duration: "" @@ -410,19 +410,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b46c275b-a2c3-402b-b5f8-a6f217b3a2f1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8517f612-ebe8-4a76-b3dc-44f65a7760b8 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:30:57.465192Z","description":"","frontend_count":0,"id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","instances":[{"created_at":"2023-06-29T13:25:24.580243Z","id":"153233a1-49f7-4a9d-bf2f-bfa5cedb10cf","ip_address":"10.72.46.81","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:31:28.336455Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:31:00.245268Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:11:37.465590Z","description":"","frontend_count":0,"id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","instances":[{"created_at":"2023-07-03T10:21:25.984045Z","id":"8c837036-90af-4b56-b10d-415d328b95b9","ip_address":"10.76.102.15","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:12:08.535220Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:11:39.846854Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:28 GMT + - Mon, 03 Jul 2023 20:12:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -432,12 +432,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 18786763-efb2-4fc2-bcc4-30c190c163b3 + - f819b046-6f1f-4e3c-ba6b-6831f822f480 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-frt-elastic-easley","inbound_port":80,"backend_id":"92ff1ffc-621c-4bf3-8da0-f21fee3faa35","certificate_ids":null,"enable_http3":false,"timeout_client":null}' + body: '{"name":"tf-lb-frt-gracious-tharp","inbound_port":80,"backend_id":"42814e6c-68dd-40a6-9ab8-c8400ff28f60","certificate_ids":null,"enable_http3":false,"timeout_client":null}' form: {} headers: Content-Type: @@ -445,19 +445,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b46c275b-a2c3-402b-b5f8-a6f217b3a2f1/frontends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8517f612-ebe8-4a76-b3dc-44f65a7760b8/frontends method: POST response: - body: '{"backend":{"created_at":"2023-06-29T13:31:28.071587Z","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":null},"id":"92ff1ffc-621c-4bf3-8da0-f21fee3faa35","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:30:57.465192Z","description":"","frontend_count":1,"id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:31:00.245268Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-ecstatic-morse","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:31:28.071587Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:31:28.656137Z","enable_http3":false,"id":"5b56010d-4476-4395-84e1-bfcd16dd1100","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:30:57.465192Z","description":"","frontend_count":1,"id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","instances":[{"created_at":"2023-06-29T13:25:24.580243Z","id":"153233a1-49f7-4a9d-bf2f-bfa5cedb10cf","ip_address":"10.72.46.81","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:31:28.713911580Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:31:00.245268Z","zone":"fr-par-1"},"name":"tf-lb-frt-elastic-easley","timeout_client":null,"updated_at":"2023-06-29T13:31:28.656137Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:12:08.207387Z","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":"42814e6c-68dd-40a6-9ab8-c8400ff28f60","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:11:37.465590Z","description":"","frontend_count":1,"id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:11:39.846854Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-competent-euler","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:12:08.207387Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:12:08.853932Z","enable_http3":false,"id":"016a81f4-2924-489d-871e-9df124cb07aa","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:11:37.465590Z","description":"","frontend_count":1,"id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","instances":[{"created_at":"2023-07-03T10:21:25.984045Z","id":"8c837036-90af-4b56-b10d-415d328b95b9","ip_address":"10.76.102.15","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:12:08.901346746Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:11:39.846854Z","zone":"fr-par-1"},"name":"tf-lb-frt-gracious-tharp","timeout_client":null,"updated_at":"2023-07-03T20:12:08.853932Z"}' headers: Content-Length: - - "3126" + - "3042" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:28 GMT + - Mon, 03 Jul 2023 20:12:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -467,7 +467,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 083c1fb8-0a9e-49ed-bd90-fed5bf09aaee + - 503f37ff-fea0-4706-93c7-367e4d193974 status: 200 OK code: 200 duration: "" @@ -478,19 +478,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b46c275b-a2c3-402b-b5f8-a6f217b3a2f1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8517f612-ebe8-4a76-b3dc-44f65a7760b8 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:30:57.465192Z","description":"","frontend_count":1,"id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","instances":[{"created_at":"2023-06-29T13:25:24.580243Z","id":"153233a1-49f7-4a9d-bf2f-bfa5cedb10cf","ip_address":"10.72.46.81","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:31:28.713912Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:31:00.245268Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:11:37.465590Z","description":"","frontend_count":1,"id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","instances":[{"created_at":"2023-07-03T10:21:25.984045Z","id":"8c837036-90af-4b56-b10d-415d328b95b9","ip_address":"10.76.102.15","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:12:08.901347Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:11:39.846854Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:28 GMT + - Mon, 03 Jul 2023 20:12:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -500,12 +500,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c259ab7-12ad-459c-af6e-83039a718c2f + - b95390c3-818f-43d5-8fae-6aaab685e37e status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-frt-serene-mirzakhani","inbound_port":80,"backend_id":"92ff1ffc-621c-4bf3-8da0-f21fee3faa35","certificate_ids":null,"enable_http3":false,"timeout_client":null}' + body: '{"name":"tf-lb-frt-hungry-turing","inbound_port":80,"backend_id":"42814e6c-68dd-40a6-9ab8-c8400ff28f60","certificate_ids":null,"enable_http3":false,"timeout_client":null}' form: {} headers: Content-Type: @@ -513,19 +513,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/5b56010d-4476-4395-84e1-bfcd16dd1100 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/016a81f4-2924-489d-871e-9df124cb07aa method: PUT response: - body: '{"backend":{"created_at":"2023-06-29T13:31:28.071587Z","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":null},"id":"92ff1ffc-621c-4bf3-8da0-f21fee3faa35","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:30:57.465192Z","description":"","frontend_count":1,"id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:31:00.245268Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-ecstatic-morse","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:31:28.071587Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:31:28.656137Z","enable_http3":false,"id":"5b56010d-4476-4395-84e1-bfcd16dd1100","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:30:57.465192Z","description":"","frontend_count":1,"id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","instances":[{"created_at":"2023-06-29T13:25:24.580243Z","id":"153233a1-49f7-4a9d-bf2f-bfa5cedb10cf","ip_address":"10.72.46.81","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:31:29.153671622Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:31:00.245268Z","zone":"fr-par-1"},"name":"tf-lb-frt-serene-mirzakhani","timeout_client":null,"updated_at":"2023-06-29T13:31:29.125136569Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:12:08.207387Z","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":"42814e6c-68dd-40a6-9ab8-c8400ff28f60","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:11:37.465590Z","description":"","frontend_count":1,"id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:11:39.846854Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-competent-euler","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:12:08.207387Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:12:08.853932Z","enable_http3":false,"id":"016a81f4-2924-489d-871e-9df124cb07aa","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:11:37.465590Z","description":"","frontend_count":1,"id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","instances":[{"created_at":"2023-07-03T10:21:25.984045Z","id":"8c837036-90af-4b56-b10d-415d328b95b9","ip_address":"10.76.102.15","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:12:09.296607140Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:11:39.846854Z","zone":"fr-par-1"},"name":"tf-lb-frt-hungry-turing","timeout_client":null,"updated_at":"2023-07-03T20:12:09.270308626Z"}' headers: Content-Length: - - "3132" + - "3044" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:29 GMT + - Mon, 03 Jul 2023 20:12:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -535,7 +535,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 688389f3-8794-405e-8e3d-85aba5bbb649 + - dea57a64-acf9-4c6e-8216-fcaf27ca5309 status: 200 OK code: 200 duration: "" @@ -546,19 +546,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/5b56010d-4476-4395-84e1-bfcd16dd1100/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/016a81f4-2924-489d-871e-9df124cb07aa/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:29 GMT + - Mon, 03 Jul 2023 20:12:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -568,7 +568,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3dda81e9-dd35-4bb6-bae0-c7b15219979e + - ae554135-79dd-4617-b57c-973d5cf2f7e4 status: 200 OK code: 200 duration: "" @@ -579,19 +579,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/5b56010d-4476-4395-84e1-bfcd16dd1100 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/016a81f4-2924-489d-871e-9df124cb07aa method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:31:28.071587Z","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":null},"id":"92ff1ffc-621c-4bf3-8da0-f21fee3faa35","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:30:57.465192Z","description":"","frontend_count":1,"id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:31:00.245268Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-ecstatic-morse","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:31:28.071587Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:31:28.656137Z","enable_http3":false,"id":"5b56010d-4476-4395-84e1-bfcd16dd1100","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:30:57.465192Z","description":"","frontend_count":1,"id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:31:00.245268Z","zone":"fr-par-1"},"name":"tf-lb-frt-serene-mirzakhani","timeout_client":null,"updated_at":"2023-06-29T13:31:29.125137Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:12:08.207387Z","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":"42814e6c-68dd-40a6-9ab8-c8400ff28f60","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:11:37.465590Z","description":"","frontend_count":1,"id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:11:39.846854Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-competent-euler","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:12:08.207387Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:12:08.853932Z","enable_http3":false,"id":"016a81f4-2924-489d-871e-9df124cb07aa","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:11:37.465590Z","description":"","frontend_count":1,"id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:11:39.846854Z","zone":"fr-par-1"},"name":"tf-lb-frt-hungry-turing","timeout_client":null,"updated_at":"2023-07-03T20:12:09.270309Z"}' headers: Content-Length: - - "2907" + - "2824" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:29 GMT + - Mon, 03 Jul 2023 20:12:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -601,7 +601,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8300c621-8f10-4333-907f-8224b8f9d915 + - 2f72e3e3-6e76-4487-8a9d-6de6aa3456de status: 200 OK code: 200 duration: "" @@ -612,19 +612,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/5b56010d-4476-4395-84e1-bfcd16dd1100/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/016a81f4-2924-489d-871e-9df124cb07aa/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:29 GMT + - Mon, 03 Jul 2023 20:12:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -634,12 +634,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65ee7335-adb6-40f7-9469-167473961292 + - cbed6b57-d4b4-467b-8999-e45579b9b3dd status: 200 OK code: 200 duration: "" - request: - body: '{"frontend_id":"5b56010d-4476-4395-84e1-bfcd16dd1100","backend_id":"92ff1ffc-621c-4bf3-8da0-f21fee3faa35","match":{"sni":"sni.scaleway.com"}}' + body: '{"frontend_id":"016a81f4-2924-489d-871e-9df124cb07aa","backend_id":"42814e6c-68dd-40a6-9ab8-c8400ff28f60","match":{"sni":"sni.scaleway.com"}}' form: {} headers: Content-Type: @@ -650,16 +650,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes method: POST response: - body: '{"backend_id":"92ff1ffc-621c-4bf3-8da0-f21fee3faa35","created_at":"2023-06-29T13:31:29.815814312Z","frontend_id":"5b56010d-4476-4395-84e1-bfcd16dd1100","id":"78837dd3-4d85-4377-b64d-b379243f6335","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-06-29T13:31:29.815814312Z"}' + body: '{"backend_id":"42814e6c-68dd-40a6-9ab8-c8400ff28f60","created_at":"2023-07-03T20:12:09.824715983Z","frontend_id":"016a81f4-2924-489d-871e-9df124cb07aa","id":"7263aac5-4011-41c9-a539-ad93c274f31e","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-07-03T20:12:09.824715983Z"}' headers: Content-Length: - - "282" + - "277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:29 GMT + - Mon, 03 Jul 2023 20:12:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -669,7 +669,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b799a9f8-8749-44e6-9d82-ecb61a9f8288 + - 2cedeadc-b10b-47a9-a954-072869300367 status: 200 OK code: 200 duration: "" @@ -680,19 +680,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/78837dd3-4d85-4377-b64d-b379243f6335 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/7263aac5-4011-41c9-a539-ad93c274f31e method: GET response: - body: '{"backend_id":"92ff1ffc-621c-4bf3-8da0-f21fee3faa35","created_at":"2023-06-29T13:31:29.815814Z","frontend_id":"5b56010d-4476-4395-84e1-bfcd16dd1100","id":"78837dd3-4d85-4377-b64d-b379243f6335","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-06-29T13:31:29.815814Z"}' + body: '{"backend_id":"42814e6c-68dd-40a6-9ab8-c8400ff28f60","created_at":"2023-07-03T20:12:09.824716Z","frontend_id":"016a81f4-2924-489d-871e-9df124cb07aa","id":"7263aac5-4011-41c9-a539-ad93c274f31e","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-07-03T20:12:09.824716Z"}' headers: Content-Length: - - "276" + - "271" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:30 GMT + - Mon, 03 Jul 2023 20:12:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -702,7 +702,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69195323-a0df-4600-9752-58a063cdc622 + - b97e1faa-facb-4aef-9dc9-988e7d0aa750 status: 200 OK code: 200 duration: "" @@ -713,19 +713,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/78837dd3-4d85-4377-b64d-b379243f6335 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/7263aac5-4011-41c9-a539-ad93c274f31e method: GET response: - body: '{"backend_id":"92ff1ffc-621c-4bf3-8da0-f21fee3faa35","created_at":"2023-06-29T13:31:29.815814Z","frontend_id":"5b56010d-4476-4395-84e1-bfcd16dd1100","id":"78837dd3-4d85-4377-b64d-b379243f6335","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-06-29T13:31:29.815814Z"}' + body: '{"backend_id":"42814e6c-68dd-40a6-9ab8-c8400ff28f60","created_at":"2023-07-03T20:12:09.824716Z","frontend_id":"016a81f4-2924-489d-871e-9df124cb07aa","id":"7263aac5-4011-41c9-a539-ad93c274f31e","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-07-03T20:12:09.824716Z"}' headers: Content-Length: - - "276" + - "271" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:30 GMT + - Mon, 03 Jul 2023 20:12:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -735,7 +735,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ff4bde5-bf66-48f0-925c-7180df1526dc + - 73709cc5-06f3-4d62-a9d3-4e3686dbca9b status: 200 OK code: 200 duration: "" @@ -746,19 +746,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/78837dd3-4d85-4377-b64d-b379243f6335 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/7263aac5-4011-41c9-a539-ad93c274f31e method: GET response: - body: '{"backend_id":"92ff1ffc-621c-4bf3-8da0-f21fee3faa35","created_at":"2023-06-29T13:31:29.815814Z","frontend_id":"5b56010d-4476-4395-84e1-bfcd16dd1100","id":"78837dd3-4d85-4377-b64d-b379243f6335","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-06-29T13:31:29.815814Z"}' + body: '{"backend_id":"42814e6c-68dd-40a6-9ab8-c8400ff28f60","created_at":"2023-07-03T20:12:09.824716Z","frontend_id":"016a81f4-2924-489d-871e-9df124cb07aa","id":"7263aac5-4011-41c9-a539-ad93c274f31e","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-07-03T20:12:09.824716Z"}' headers: Content-Length: - - "276" + - "271" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:30 GMT + - Mon, 03 Jul 2023 20:12:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -768,7 +768,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9348baa8-4ac4-41ff-8dbe-172a773940dd + - 0331b6bb-8576-446e-8814-48ee0c0e3ba4 status: 200 OK code: 200 duration: "" @@ -779,19 +779,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "319" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:30 GMT + - Mon, 03 Jul 2023 20:12:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -801,7 +801,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30b8a918-320b-4b90-816d-602addc99e94 + - 01deac8a-979f-4cdd-b8e2-eba8cc5dcc1e status: 200 OK code: 200 duration: "" @@ -812,19 +812,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b46c275b-a2c3-402b-b5f8-a6f217b3a2f1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8517f612-ebe8-4a76-b3dc-44f65a7760b8 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:30:57.465192Z","description":"","frontend_count":1,"id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","instances":[{"created_at":"2023-06-29T13:25:24.580243Z","id":"153233a1-49f7-4a9d-bf2f-bfa5cedb10cf","ip_address":"10.72.46.81","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:31:30.165377Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:31:00.245268Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:11:37.465590Z","description":"","frontend_count":1,"id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","instances":[{"created_at":"2023-07-03T10:21:25.984045Z","id":"8c837036-90af-4b56-b10d-415d328b95b9","ip_address":"10.76.102.15","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:12:10.210385Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:11:39.846854Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:30 GMT + - Mon, 03 Jul 2023 20:12:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -834,7 +834,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1232a347-f1ef-4525-930c-060bb261b69f + - e5941f9e-cc45-4680-af48-b54e5d9e7a31 status: 200 OK code: 200 duration: "" @@ -845,19 +845,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b46c275b-a2c3-402b-b5f8-a6f217b3a2f1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8517f612-ebe8-4a76-b3dc-44f65a7760b8 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:30:57.465192Z","description":"","frontend_count":1,"id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","instances":[{"created_at":"2023-06-29T13:25:24.580243Z","id":"153233a1-49f7-4a9d-bf2f-bfa5cedb10cf","ip_address":"10.72.46.81","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:31:30.165377Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:31:00.245268Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:11:37.465590Z","description":"","frontend_count":1,"id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","instances":[{"created_at":"2023-07-03T10:21:25.984045Z","id":"8c837036-90af-4b56-b10d-415d328b95b9","ip_address":"10.76.102.15","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:12:10.210385Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:11:39.846854Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:30 GMT + - Mon, 03 Jul 2023 20:12:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -867,7 +867,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e20bba9b-fcb7-41b7-b5b3-57aedea766c7 + - bb726ff7-be7f-44b0-bdb2-fa3725bd2b24 status: 200 OK code: 200 duration: "" @@ -878,19 +878,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b46c275b-a2c3-402b-b5f8-a6f217b3a2f1/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8517f612-ebe8-4a76-b3dc-44f65a7760b8/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:31 GMT + - Mon, 03 Jul 2023 20:12:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -900,7 +900,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48c5abfb-e817-424f-b371-eaaf3a0df2b0 + - e2231d2c-b1ac-4ebb-a431-c81f94608c56 status: 200 OK code: 200 duration: "" @@ -911,19 +911,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/92ff1ffc-621c-4bf3-8da0-f21fee3faa35 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/42814e6c-68dd-40a6-9ab8-c8400ff28f60 method: GET response: - body: '{"created_at":"2023-06-29T13:31:28.071587Z","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":null},"id":"92ff1ffc-621c-4bf3-8da0-f21fee3faa35","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:30:57.465192Z","description":"","frontend_count":1,"id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","instances":[{"created_at":"2023-06-29T13:25:24.580243Z","id":"153233a1-49f7-4a9d-bf2f-bfa5cedb10cf","ip_address":"10.72.46.81","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:31:30.165377Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:31:00.245268Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-ecstatic-morse","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:31:28.071587Z"}' + body: '{"created_at":"2023-07-03T20:12:08.207387Z","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":"42814e6c-68dd-40a6-9ab8-c8400ff28f60","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:11:37.465590Z","description":"","frontend_count":1,"id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","instances":[{"created_at":"2023-07-03T10:21:25.984045Z","id":"8c837036-90af-4b56-b10d-415d328b95b9","ip_address":"10.76.102.15","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:12:10.210385Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:11:39.846854Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-competent-euler","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:12:08.207387Z"}' headers: Content-Length: - - "1954" + - "1902" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:31 GMT + - Mon, 03 Jul 2023 20:12:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -933,7 +933,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fece0a7a-cc23-49b7-bb04-c3b0a1eff133 + - 5877455b-e6be-4df1-97c3-4ea48784cf09 status: 200 OK code: 200 duration: "" @@ -944,19 +944,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b46c275b-a2c3-402b-b5f8-a6f217b3a2f1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8517f612-ebe8-4a76-b3dc-44f65a7760b8 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:30:57.465192Z","description":"","frontend_count":1,"id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","instances":[{"created_at":"2023-06-29T13:25:24.580243Z","id":"153233a1-49f7-4a9d-bf2f-bfa5cedb10cf","ip_address":"10.72.46.81","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:31:30.165377Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:31:00.245268Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:11:37.465590Z","description":"","frontend_count":1,"id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","instances":[{"created_at":"2023-07-03T10:21:25.984045Z","id":"8c837036-90af-4b56-b10d-415d328b95b9","ip_address":"10.76.102.15","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:12:10.210385Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:11:39.846854Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:31 GMT + - Mon, 03 Jul 2023 20:12:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -966,7 +966,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b97d2a1-a416-43d9-a032-0cffd0441247 + - 1c690f41-7b38-464c-a3b3-12a5213fd6f7 status: 200 OK code: 200 duration: "" @@ -977,19 +977,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/5b56010d-4476-4395-84e1-bfcd16dd1100 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/016a81f4-2924-489d-871e-9df124cb07aa method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:31:28.071587Z","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":null},"id":"92ff1ffc-621c-4bf3-8da0-f21fee3faa35","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:30:57.465192Z","description":"","frontend_count":1,"id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:31:00.245268Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-ecstatic-morse","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:31:28.071587Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:31:28.656137Z","enable_http3":false,"id":"5b56010d-4476-4395-84e1-bfcd16dd1100","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:30:57.465192Z","description":"","frontend_count":1,"id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:31:00.245268Z","zone":"fr-par-1"},"name":"tf-lb-frt-serene-mirzakhani","timeout_client":null,"updated_at":"2023-06-29T13:31:29.125137Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:12:08.207387Z","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":"42814e6c-68dd-40a6-9ab8-c8400ff28f60","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:11:37.465590Z","description":"","frontend_count":1,"id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:11:39.846854Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-competent-euler","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:12:08.207387Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:12:08.853932Z","enable_http3":false,"id":"016a81f4-2924-489d-871e-9df124cb07aa","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:11:37.465590Z","description":"","frontend_count":1,"id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:11:39.846854Z","zone":"fr-par-1"},"name":"tf-lb-frt-hungry-turing","timeout_client":null,"updated_at":"2023-07-03T20:12:09.270309Z"}' headers: Content-Length: - - "2907" + - "2824" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:31 GMT + - Mon, 03 Jul 2023 20:12:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -999,7 +999,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 794ca896-6e70-4304-a603-c41d675d1d32 + - 711c757d-20c4-47f3-b2ee-899020490f5e status: 200 OK code: 200 duration: "" @@ -1010,19 +1010,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/5b56010d-4476-4395-84e1-bfcd16dd1100/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/016a81f4-2924-489d-871e-9df124cb07aa/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:31 GMT + - Mon, 03 Jul 2023 20:12:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1032,7 +1032,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6f6a70f-c20b-464e-8df2-668b73084904 + - 8c91a037-a388-4c33-8391-151b9edb16ce status: 200 OK code: 200 duration: "" @@ -1043,19 +1043,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/78837dd3-4d85-4377-b64d-b379243f6335 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/7263aac5-4011-41c9-a539-ad93c274f31e method: GET response: - body: '{"backend_id":"92ff1ffc-621c-4bf3-8da0-f21fee3faa35","created_at":"2023-06-29T13:31:29.815814Z","frontend_id":"5b56010d-4476-4395-84e1-bfcd16dd1100","id":"78837dd3-4d85-4377-b64d-b379243f6335","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-06-29T13:31:29.815814Z"}' + body: '{"backend_id":"42814e6c-68dd-40a6-9ab8-c8400ff28f60","created_at":"2023-07-03T20:12:09.824716Z","frontend_id":"016a81f4-2924-489d-871e-9df124cb07aa","id":"7263aac5-4011-41c9-a539-ad93c274f31e","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-07-03T20:12:09.824716Z"}' headers: Content-Length: - - "276" + - "271" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:31 GMT + - Mon, 03 Jul 2023 20:12:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1065,7 +1065,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e69d27b-b8ce-4627-9167-146b58d8c340 + - 28cd22d9-ddd8-471c-a635-65a117e4ab2c status: 200 OK code: 200 duration: "" @@ -1076,19 +1076,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/78837dd3-4d85-4377-b64d-b379243f6335 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/7263aac5-4011-41c9-a539-ad93c274f31e method: GET response: - body: '{"backend_id":"92ff1ffc-621c-4bf3-8da0-f21fee3faa35","created_at":"2023-06-29T13:31:29.815814Z","frontend_id":"5b56010d-4476-4395-84e1-bfcd16dd1100","id":"78837dd3-4d85-4377-b64d-b379243f6335","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-06-29T13:31:29.815814Z"}' + body: '{"backend_id":"42814e6c-68dd-40a6-9ab8-c8400ff28f60","created_at":"2023-07-03T20:12:09.824716Z","frontend_id":"016a81f4-2924-489d-871e-9df124cb07aa","id":"7263aac5-4011-41c9-a539-ad93c274f31e","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-07-03T20:12:09.824716Z"}' headers: Content-Length: - - "276" + - "271" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:31 GMT + - Mon, 03 Jul 2023 20:12:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1098,7 +1098,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83dd6991-fe77-4755-bccb-9b691d2a4bf5 + - 13b1b9cd-95dd-4da3-b256-8df269f9b355 status: 200 OK code: 200 duration: "" @@ -1109,19 +1109,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/78837dd3-4d85-4377-b64d-b379243f6335 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/7263aac5-4011-41c9-a539-ad93c274f31e method: GET response: - body: '{"backend_id":"92ff1ffc-621c-4bf3-8da0-f21fee3faa35","created_at":"2023-06-29T13:31:29.815814Z","frontend_id":"5b56010d-4476-4395-84e1-bfcd16dd1100","id":"78837dd3-4d85-4377-b64d-b379243f6335","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-06-29T13:31:29.815814Z"}' + body: '{"backend_id":"42814e6c-68dd-40a6-9ab8-c8400ff28f60","created_at":"2023-07-03T20:12:09.824716Z","frontend_id":"016a81f4-2924-489d-871e-9df124cb07aa","id":"7263aac5-4011-41c9-a539-ad93c274f31e","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-07-03T20:12:09.824716Z"}' headers: Content-Length: - - "276" + - "271" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:31 GMT + - Mon, 03 Jul 2023 20:12:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1131,7 +1131,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6df83a0-4bea-494f-9ae0-e62935f505fe + - d7bbb15b-a408-44ef-952b-a5b47ab5f3cb status: 200 OK code: 200 duration: "" @@ -1142,7 +1142,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/78837dd3-4d85-4377-b64d-b379243f6335 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/7263aac5-4011-41c9-a539-ad93c274f31e method: DELETE response: body: "" @@ -1152,7 +1152,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:32 GMT + - Mon, 03 Jul 2023 20:12:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1162,7 +1162,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 361a559c-eb99-40f5-aa65-56d570f33c72 + - 5245cb2b-a2ed-4b6b-ab5d-2718c0ce290d status: 204 No Content code: 204 duration: "" @@ -1173,7 +1173,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/5b56010d-4476-4395-84e1-bfcd16dd1100 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/016a81f4-2924-489d-871e-9df124cb07aa method: DELETE response: body: "" @@ -1183,7 +1183,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:32 GMT + - Mon, 03 Jul 2023 20:12:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1193,7 +1193,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b070672-15b5-49aa-99d4-754ad9a6ccd4 + - c0f7a99e-9e1c-499e-ac41-18791b925e3f status: 204 No Content code: 204 duration: "" @@ -1204,19 +1204,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b46c275b-a2c3-402b-b5f8-a6f217b3a2f1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8517f612-ebe8-4a76-b3dc-44f65a7760b8 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:30:57.465192Z","description":"","frontend_count":0,"id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","instances":[{"created_at":"2023-06-29T13:25:24.580243Z","id":"153233a1-49f7-4a9d-bf2f-bfa5cedb10cf","ip_address":"10.72.46.81","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:31:32.710222Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:31:00.245268Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:11:37.465590Z","description":"","frontend_count":0,"id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","instances":[{"created_at":"2023-07-03T10:21:25.984045Z","id":"8c837036-90af-4b56-b10d-415d328b95b9","ip_address":"10.76.102.15","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:12:12.734441Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:11:39.846854Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:32 GMT + - Mon, 03 Jul 2023 20:12:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1226,7 +1226,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33b17dc2-a294-42b3-9a40-f103e3c2205d + - a715f204-e300-47a4-86c7-2f6f15bbe3e0 status: 200 OK code: 200 duration: "" @@ -1237,19 +1237,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b46c275b-a2c3-402b-b5f8-a6f217b3a2f1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8517f612-ebe8-4a76-b3dc-44f65a7760b8 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:30:57.465192Z","description":"","frontend_count":0,"id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","instances":[{"created_at":"2023-06-29T13:25:24.580243Z","id":"153233a1-49f7-4a9d-bf2f-bfa5cedb10cf","ip_address":"10.72.46.81","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:31:32.710222Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:31:00.245268Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:11:37.465590Z","description":"","frontend_count":0,"id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","instances":[{"created_at":"2023-07-03T10:21:25.984045Z","id":"8c837036-90af-4b56-b10d-415d328b95b9","ip_address":"10.76.102.15","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:12:12.734441Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:11:39.846854Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:33 GMT + - Mon, 03 Jul 2023 20:12:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1259,7 +1259,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 244a7c10-751e-4ac0-860d-67d53f19b989 + - 140eef56-b7be-45b4-8385-a8cb37e2b9d2 status: 200 OK code: 200 duration: "" @@ -1270,7 +1270,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/92ff1ffc-621c-4bf3-8da0-f21fee3faa35 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/42814e6c-68dd-40a6-9ab8-c8400ff28f60 method: DELETE response: body: "" @@ -1280,7 +1280,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:33 GMT + - Mon, 03 Jul 2023 20:12:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1290,7 +1290,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d9a6d7f-ac66-47b0-94d6-0883aa11d23f + - 36609681-18b4-4e71-921c-9c780acae16f status: 204 No Content code: 204 duration: "" @@ -1301,19 +1301,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b46c275b-a2c3-402b-b5f8-a6f217b3a2f1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8517f612-ebe8-4a76-b3dc-44f65a7760b8 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:30:57.465192Z","description":"","frontend_count":0,"id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","instances":[{"created_at":"2023-06-29T13:25:24.580243Z","id":"153233a1-49f7-4a9d-bf2f-bfa5cedb10cf","ip_address":"10.72.46.81","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:31:33.188585Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:31:00.245268Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:11:37.465590Z","description":"","frontend_count":0,"id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","instances":[{"created_at":"2023-07-03T10:21:25.984045Z","id":"8c837036-90af-4b56-b10d-415d328b95b9","ip_address":"10.76.102.15","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:12:13.013587Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:11:39.846854Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:33 GMT + - Mon, 03 Jul 2023 20:12:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1323,7 +1323,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a35d3438-78e0-4ef8-9da2-d4a7c03dfaea + - d8e8dc0b-b978-460b-ac3a-27d98876668e status: 200 OK code: 200 duration: "" @@ -1334,19 +1334,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b46c275b-a2c3-402b-b5f8-a6f217b3a2f1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8517f612-ebe8-4a76-b3dc-44f65a7760b8 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:30:57.465192Z","description":"","frontend_count":0,"id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","instances":[{"created_at":"2023-06-29T13:25:24.580243Z","id":"153233a1-49f7-4a9d-bf2f-bfa5cedb10cf","ip_address":"10.72.46.81","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:31:33.188585Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:31:00.245268Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:11:37.465590Z","description":"","frontend_count":0,"id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","instances":[{"created_at":"2023-07-03T10:21:25.984045Z","id":"8c837036-90af-4b56-b10d-415d328b95b9","ip_address":"10.76.102.15","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:12:13.233868Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:11:39.846854Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:33 GMT + - Mon, 03 Jul 2023 20:12:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1356,7 +1356,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4fcf9913-f57c-464e-9bab-bbe4b8127080 + - cfe49364-e3c6-41cf-9797-c809a399e225 status: 200 OK code: 200 duration: "" @@ -1367,7 +1367,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b46c275b-a2c3-402b-b5f8-a6f217b3a2f1?release_ip=false + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8517f612-ebe8-4a76-b3dc-44f65a7760b8?release_ip=false method: DELETE response: body: "" @@ -1377,7 +1377,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:33 GMT + - Mon, 03 Jul 2023 20:12:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1387,7 +1387,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5fc8e071-6c87-43cc-a87c-31fdc5796906 + - edfb0ae0-407a-43f6-998e-6811c21339ff status: 204 No Content code: 204 duration: "" @@ -1398,19 +1398,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b46c275b-a2c3-402b-b5f8-a6f217b3a2f1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8517f612-ebe8-4a76-b3dc-44f65a7760b8 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:30:57.465192Z","description":"","frontend_count":0,"id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","instances":[{"created_at":"2023-06-29T13:25:24.580243Z","id":"153233a1-49f7-4a9d-bf2f-bfa5cedb10cf","ip_address":"10.72.46.81","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:31:33.447109Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b46c275b-a2c3-402b-b5f8-a6f217b3a2f1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:31:33.584991Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:11:37.465590Z","description":"","frontend_count":0,"id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","instances":[{"created_at":"2023-07-03T10:21:25.984045Z","id":"8c837036-90af-4b56-b10d-415d328b95b9","ip_address":"10.76.102.15","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:12:13.233868Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8517f612-ebe8-4a76-b3dc-44f65a7760b8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:13.368495Z","zone":"fr-par-1"}' headers: Content-Length: - - "1095" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:31:33 GMT + - Mon, 03 Jul 2023 20:12:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1420,7 +1420,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7f63aae-88eb-4ac0-859a-e9ee58fb58e3 + - c9484809-c437-4849-81e9-fb38f6807efc status: 200 OK code: 200 duration: "" @@ -1431,7 +1431,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b46c275b-a2c3-402b-b5f8-a6f217b3a2f1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8517f612-ebe8-4a76-b3dc-44f65a7760b8 method: GET response: body: '{"message":"lbs not Found"}' @@ -1443,7 +1443,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:03 GMT + - Mon, 03 Jul 2023 20:12:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1453,7 +1453,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c68197c-2805-430c-b1eb-bb7cf8a495dd + - 20723ad4-80e0-4d6e-9a9b-5e11df2635e6 status: 404 Not Found code: 404 duration: "" @@ -1464,7 +1464,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b46c275b-a2c3-402b-b5f8-a6f217b3a2f1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8517f612-ebe8-4a76-b3dc-44f65a7760b8 method: GET response: body: '{"message":"lbs not Found"}' @@ -1476,7 +1476,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:03 GMT + - Mon, 03 Jul 2023 20:12:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1486,7 +1486,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7dbbb7de-f80f-4721-b265-53ebd03c4622 + - f1b90f30-8ec4-4d19-96d7-d83c20d874b9 status: 404 Not Found code: 404 duration: "" @@ -1497,19 +1497,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "285" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:03 GMT + - Mon, 03 Jul 2023 20:12:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1519,7 +1519,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d65acc05-444a-420e-8bd9-11531f36eb2e + - 0e1c8c18-b598-44a4-8034-49c0b3f52b4f status: 200 OK code: 200 duration: "" @@ -1530,7 +1530,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: DELETE response: body: "" @@ -1540,7 +1540,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:04 GMT + - Mon, 03 Jul 2023 20:12:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1550,7 +1550,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c61f2797-04b4-427b-a07d-327a866bd4df + - 63fb2ef3-b85d-4f88-8366-424f71750a18 status: 204 No Content code: 204 duration: "" @@ -1561,7 +1561,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b46c275b-a2c3-402b-b5f8-a6f217b3a2f1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8517f612-ebe8-4a76-b3dc-44f65a7760b8 method: GET response: body: '{"message":"lbs not Found"}' @@ -1573,7 +1573,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:04 GMT + - Mon, 03 Jul 2023 20:12:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1583,7 +1583,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b3df1cc3-9f45-479f-9653-69ffc6539fef + - eb748e79-461b-4649-aff0-4be7d56b3e09 status: 404 Not Found code: 404 duration: "" @@ -1594,7 +1594,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: body: '{"message":"ips not Found"}' @@ -1606,7 +1606,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:04 GMT + - Mon, 03 Jul 2023 20:12:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1616,7 +1616,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6daaf03-502c-4491-bcc1-20f6da2d3ab8 + - b339ea9c-1a91-4e34-83d1-0abd1c0e21a4 status: 404 Not Found code: 404 duration: "" @@ -1627,7 +1627,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b46c275b-a2c3-402b-b5f8-a6f217b3a2f1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8517f612-ebe8-4a76-b3dc-44f65a7760b8 method: GET response: body: '{"message":"lbs not Found"}' @@ -1639,7 +1639,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:04 GMT + - Mon, 03 Jul 2023 20:12:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1649,7 +1649,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5cebb239-1562-443b-8f2e-b76daea51b37 + - 7a0f9503-2b0a-4f1e-8da5-a81729330821 status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/data-source-lb-routes-basic.cassette.yaml b/scaleway/testdata/data-source-lb-routes-basic.cassette.yaml index f7691fc8e4..d0852874bd 100644 --- a/scaleway/testdata/data-source-lb-routes-basic.cassette.yaml +++ b/scaleway/testdata/data-source-lb-routes-basic.cassette.yaml @@ -13,16 +13,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips method: POST response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "285" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:01 GMT + - Mon, 03 Jul 2023 20:16:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -32,7 +32,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dffd2319-6d16-44cf-9d0b-7712533e90f9 + - e501d483-fc09-465e-b69b-d967885febe5 status: 200 OK code: 200 duration: "" @@ -43,19 +43,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "285" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:02 GMT + - Mon, 03 Jul 2023 20:16:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -65,12 +65,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d5381951-fab5-4352-971c-537e6847a5fe + - 67fda79a-c61f-464b-b9d6-790f3b17d84e status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-lb","description":"","ip_id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","assign_flexible_ip":null,"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":"86df9ff8-7a77-492d-9b03-4f6205127499","assign_flexible_ip":null,"tags":null,"type":"lb-s","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' form: {} headers: Content-Type: @@ -81,16 +81,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs method: POST response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:35:02.149630870Z","description":"","frontend_count":0,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:35:02.149630870Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:16:00.291364595Z","description":"","frontend_count":0,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:16:00.291364595Z","zone":"fr-par-1"}' headers: Content-Length: - - "884" + - "862" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:02 GMT + - Mon, 03 Jul 2023 20:16:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -100,7 +100,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6f68221-c582-4553-b5c7-19ec1de69701 + - da36321f-cd9a-4c48-99b0-08feee37080a status: 200 OK code: 200 duration: "" @@ -111,19 +111,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/08a835d0-a987-4f23-ad71-e8892d12f9ca + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":0,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[{"created_at":"2023-06-29T13:33:54.654034Z","id":"25d0bf41-ad46-47fd-b2c0-ea7b1b2d297b","ip_address":"10.74.34.61","region":"fr-par","status":"unknown","updated_at":"2023-06-29T13:35:02.381756Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:35:02.395711Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":0,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:16:00.291365Z","zone":"fr-par-1"}' headers: Content-Length: - - "1096" + - "856" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:02 GMT + - Mon, 03 Jul 2023 20:16:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -133,7 +133,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4b0a4bd-62e1-45ec-9686-f8d5d63fc9fe + - 7cf24fe2-3541-4b7e-8ea7-d99f942065e1 status: 200 OK code: 200 duration: "" @@ -144,19 +144,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/08a835d0-a987-4f23-ad71-e8892d12f9ca + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":0,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[{"created_at":"2023-06-29T13:33:54.654034Z","id":"25d0bf41-ad46-47fd-b2c0-ea7b1b2d297b","ip_address":"10.74.34.61","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:35:03.230840Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:35:04.357115Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":0,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[{"created_at":"2023-07-03T20:14:45.950314Z","id":"ce6b1a56-fba6-4a90-9174-1f4aefcb165b","ip_address":"10.64.192.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:16:01.544768Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:16:02.992919Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:32 GMT + - Mon, 03 Jul 2023 20:16:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -166,7 +166,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 915c05f5-fee9-4635-bba0-3458df38292c + - d800aeb8-f3b3-4093-9c6a-c180afdbfe31 status: 200 OK code: 200 duration: "" @@ -177,19 +177,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/08a835d0-a987-4f23-ad71-e8892d12f9ca + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":0,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[{"created_at":"2023-06-29T13:33:54.654034Z","id":"25d0bf41-ad46-47fd-b2c0-ea7b1b2d297b","ip_address":"10.74.34.61","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:35:03.230840Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:35:04.357115Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":0,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[{"created_at":"2023-07-03T20:14:45.950314Z","id":"ce6b1a56-fba6-4a90-9174-1f4aefcb165b","ip_address":"10.64.192.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:16:01.544768Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:16:02.992919Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:32 GMT + - Mon, 03 Jul 2023 20:16:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -199,7 +199,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c75038f9-7272-4411-b9ce-8ba35af39980 + - 713f23ea-51ea-4caf-8506-b3eea88ab0e7 status: 200 OK code: 200 duration: "" @@ -210,19 +210,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/08a835d0-a987-4f23-ad71-e8892d12f9ca/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:32 GMT + - Mon, 03 Jul 2023 20:16:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -232,7 +232,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0954631-c447-4838-bfaa-cac42e2ca737 + - 80e90231-a9a5-48ba-9044-8619143cbdbd status: 200 OK code: 200 duration: "" @@ -243,19 +243,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/08a835d0-a987-4f23-ad71-e8892d12f9ca + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":0,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[{"created_at":"2023-06-29T13:33:54.654034Z","id":"25d0bf41-ad46-47fd-b2c0-ea7b1b2d297b","ip_address":"10.74.34.61","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:35:03.230840Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:35:04.357115Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":0,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[{"created_at":"2023-07-03T20:14:45.950314Z","id":"ce6b1a56-fba6-4a90-9174-1f4aefcb165b","ip_address":"10.64.192.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:16:01.544768Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:16:02.992919Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:32 GMT + - Mon, 03 Jul 2023 20:16:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -265,12 +265,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ccfd50e-0d75-44da-9b84-3568d0a659e6 + - bed49ef5-04cb-44bd-929e-19e91322193a status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-bkd-wonderful-cartwright","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":null,"check_delay":60000,"check_timeout":30000},"server_ip":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":null,"max_retries":3,"max_connections":null,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' + body: '{"name":"tf-lb-bkd-nervous-dewdney","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":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":null,"max_retries":3,"max_connections":null,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' form: {} headers: Content-Type: @@ -278,19 +278,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/08a835d0-a987-4f23-ad71-e8892d12f9ca/backends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc/backends method: POST response: - body: '{"created_at":"2023-06-29T13:35:32.902867354Z","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":null},"id":"d7d44ba1-a37b-48e2-aa6b-e32032e93d5b","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":0,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[{"created_at":"2023-06-29T13:33:54.654034Z","id":"25d0bf41-ad46-47fd-b2c0-ea7b1b2d297b","ip_address":"10.74.34.61","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:35:32.947094335Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:35:04.357115Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-wonderful-cartwright","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:35:32.902867354Z"}' + body: '{"created_at":"2023-07-03T20:16:30.989011509Z","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":"ed481587-df65-4304-9706-02de1785ef1c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":0,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[{"created_at":"2023-07-03T20:14:45.950314Z","id":"ce6b1a56-fba6-4a90-9174-1f4aefcb165b","ip_address":"10.64.192.5","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:16:31.024608594Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:16:02.992919Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-nervous-dewdney","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:16:30.989011509Z"}' headers: Content-Length: - - "1971" + - "1912" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:33 GMT + - Mon, 03 Jul 2023 20:16:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -300,7 +300,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2157506-dc95-42ec-81c9-87f1ec6275df + - 719528f7-2338-4749-a3d9-4993faf24bd4 status: 200 OK code: 200 duration: "" @@ -311,19 +311,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/08a835d0-a987-4f23-ad71-e8892d12f9ca + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":0,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[{"created_at":"2023-06-29T13:33:54.654034Z","id":"25d0bf41-ad46-47fd-b2c0-ea7b1b2d297b","ip_address":"10.74.34.61","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:35:32.947094Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:35:04.357115Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":0,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[{"created_at":"2023-07-03T20:14:45.950314Z","id":"ce6b1a56-fba6-4a90-9174-1f4aefcb165b","ip_address":"10.64.192.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:16:31.267850Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:16:02.992919Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:33 GMT + - Mon, 03 Jul 2023 20:16:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -333,7 +333,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da0d9e95-623a-46c8-baa4-045d2def9ec2 + - 3f828177-61b2-491d-99ef-a1d5c93dab19 status: 200 OK code: 200 duration: "" @@ -344,19 +344,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/d7d44ba1-a37b-48e2-aa6b-e32032e93d5b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/ed481587-df65-4304-9706-02de1785ef1c method: GET response: - body: '{"created_at":"2023-06-29T13:35:32.902867Z","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":null},"id":"d7d44ba1-a37b-48e2-aa6b-e32032e93d5b","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":0,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[{"created_at":"2023-06-29T13:33:54.654034Z","id":"25d0bf41-ad46-47fd-b2c0-ea7b1b2d297b","ip_address":"10.74.34.61","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:35:32.947094Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:35:04.357115Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-wonderful-cartwright","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:35:32.902867Z"}' + body: '{"created_at":"2023-07-03T20:16:30.989012Z","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":"ed481587-df65-4304-9706-02de1785ef1c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":0,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[{"created_at":"2023-07-03T20:14:45.950314Z","id":"ce6b1a56-fba6-4a90-9174-1f4aefcb165b","ip_address":"10.64.192.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:16:31.267850Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:16:02.992919Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-nervous-dewdney","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:16:30.989012Z"}' headers: Content-Length: - - "1962" + - "1901" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:33 GMT + - Mon, 03 Jul 2023 20:16:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -366,7 +366,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e5c7462-c37d-40ce-8d2a-2e652f07594c + - ebe35eb8-f5ed-4820-9c09-2053bf8eed39 status: 200 OK code: 200 duration: "" @@ -377,19 +377,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/08a835d0-a987-4f23-ad71-e8892d12f9ca + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":0,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[{"created_at":"2023-06-29T13:33:54.654034Z","id":"25d0bf41-ad46-47fd-b2c0-ea7b1b2d297b","ip_address":"10.74.34.61","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:35:33.241969Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:35:04.357115Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":0,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[{"created_at":"2023-07-03T20:14:45.950314Z","id":"ce6b1a56-fba6-4a90-9174-1f4aefcb165b","ip_address":"10.64.192.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:16:31.267850Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:16:02.992919Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:33 GMT + - Mon, 03 Jul 2023 20:16:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -399,7 +399,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2df9ce5f-81fd-4c07-8302-b0ac7cd11bfb + - 908fb934-309e-4525-a950-50db0f2b6134 status: 200 OK code: 200 duration: "" @@ -410,19 +410,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/08a835d0-a987-4f23-ad71-e8892d12f9ca + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":0,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[{"created_at":"2023-06-29T13:33:54.654034Z","id":"25d0bf41-ad46-47fd-b2c0-ea7b1b2d297b","ip_address":"10.74.34.61","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:35:33.241969Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:35:04.357115Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":0,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[{"created_at":"2023-07-03T20:14:45.950314Z","id":"ce6b1a56-fba6-4a90-9174-1f4aefcb165b","ip_address":"10.64.192.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:16:31.267850Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:16:02.992919Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:33 GMT + - Mon, 03 Jul 2023 20:16:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -432,12 +432,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22316df4-0cf5-42b4-a188-5ccc37fc499d + - 374f3437-08ce-4e71-a22c-c64efba7572a status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-frt-gallant-kilby","inbound_port":80,"backend_id":"d7d44ba1-a37b-48e2-aa6b-e32032e93d5b","certificate_ids":null,"enable_http3":false,"timeout_client":null}' + body: '{"name":"tf-lb-frt-goofy-morse","inbound_port":80,"backend_id":"ed481587-df65-4304-9706-02de1785ef1c","certificate_ids":null,"enable_http3":false,"timeout_client":null}' form: {} headers: Content-Type: @@ -445,19 +445,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/08a835d0-a987-4f23-ad71-e8892d12f9ca/frontends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc/frontends method: POST response: - body: '{"backend":{"created_at":"2023-06-29T13:35:32.902867Z","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":null},"id":"d7d44ba1-a37b-48e2-aa6b-e32032e93d5b","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":1,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:35:04.357115Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-wonderful-cartwright","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:35:32.902867Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:35:33.617535Z","enable_http3":false,"id":"b4fcfb7e-012f-49e2-a48a-fe1ad1710d78","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":1,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[{"created_at":"2023-06-29T13:33:54.654034Z","id":"25d0bf41-ad46-47fd-b2c0-ea7b1b2d297b","ip_address":"10.74.34.61","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:35:33.672584511Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:35:04.357115Z","zone":"fr-par-1"},"name":"tf-lb-frt-gallant-kilby","timeout_client":null,"updated_at":"2023-06-29T13:35:33.617535Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:16:30.989012Z","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":"ed481587-df65-4304-9706-02de1785ef1c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":1,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:16:02.992919Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-nervous-dewdney","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:16:30.989012Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:16:31.762750Z","enable_http3":false,"id":"c6492d61-52e0-42d0-8633-1535069b4b03","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":1,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[{"created_at":"2023-07-03T20:14:45.950314Z","id":"ce6b1a56-fba6-4a90-9174-1f4aefcb165b","ip_address":"10.64.192.5","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:16:31.839632696Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:16:02.992919Z","zone":"fr-par-1"},"name":"tf-lb-frt-goofy-morse","timeout_client":null,"updated_at":"2023-07-03T20:16:31.762750Z"}' headers: Content-Length: - - "3131" + - "3038" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:33 GMT + - Mon, 03 Jul 2023 20:16:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -467,7 +467,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f47c152b-1a3b-4fe0-9b87-66d80b73b641 + - b2e08992-4f24-4a58-a5ab-573fe2e333e3 status: 200 OK code: 200 duration: "" @@ -478,19 +478,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/08a835d0-a987-4f23-ad71-e8892d12f9ca + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":1,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[{"created_at":"2023-06-29T13:33:54.654034Z","id":"25d0bf41-ad46-47fd-b2c0-ea7b1b2d297b","ip_address":"10.74.34.61","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:35:33.672585Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:35:04.357115Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":1,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[{"created_at":"2023-07-03T20:14:45.950314Z","id":"ce6b1a56-fba6-4a90-9174-1f4aefcb165b","ip_address":"10.64.192.5","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:16:31.839633Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:16:02.992919Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:33 GMT + - Mon, 03 Jul 2023 20:16:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -500,12 +500,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c1e11be7-ca95-4afa-8247-d16a7057c3e2 + - 484a713f-0eec-4a77-86dc-897a792eb1bf status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-frt-romantic-brattain","inbound_port":80,"backend_id":"d7d44ba1-a37b-48e2-aa6b-e32032e93d5b","certificate_ids":null,"enable_http3":false,"timeout_client":null}' + body: '{"name":"tf-lb-frt-stoic-aryabhata","inbound_port":80,"backend_id":"ed481587-df65-4304-9706-02de1785ef1c","certificate_ids":null,"enable_http3":false,"timeout_client":null}' form: {} headers: Content-Type: @@ -513,19 +513,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/b4fcfb7e-012f-49e2-a48a-fe1ad1710d78 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/c6492d61-52e0-42d0-8633-1535069b4b03 method: PUT response: - body: '{"backend":{"created_at":"2023-06-29T13:35:32.902867Z","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":null},"id":"d7d44ba1-a37b-48e2-aa6b-e32032e93d5b","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":1,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:35:04.357115Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-wonderful-cartwright","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:35:32.902867Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:35:33.617535Z","enable_http3":false,"id":"b4fcfb7e-012f-49e2-a48a-fe1ad1710d78","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":1,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[{"created_at":"2023-06-29T13:33:54.654034Z","id":"25d0bf41-ad46-47fd-b2c0-ea7b1b2d297b","ip_address":"10.74.34.61","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:35:34.146738661Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:35:04.357115Z","zone":"fr-par-1"},"name":"tf-lb-frt-romantic-brattain","timeout_client":null,"updated_at":"2023-06-29T13:35:34.052112110Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:16:30.989012Z","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":"ed481587-df65-4304-9706-02de1785ef1c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":1,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:16:02.992919Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-nervous-dewdney","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:16:30.989012Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:16:31.762750Z","enable_http3":false,"id":"c6492d61-52e0-42d0-8633-1535069b4b03","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":1,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[{"created_at":"2023-07-03T20:14:45.950314Z","id":"ce6b1a56-fba6-4a90-9174-1f4aefcb165b","ip_address":"10.64.192.5","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:16:32.330268586Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:16:02.992919Z","zone":"fr-par-1"},"name":"tf-lb-frt-stoic-aryabhata","timeout_client":null,"updated_at":"2023-07-03T20:16:32.301063534Z"}' headers: Content-Length: - - "3138" + - "3045" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:34 GMT + - Mon, 03 Jul 2023 20:16:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -535,7 +535,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b3bb86e0-be7a-44a8-b7f7-ab02451fe630 + - 359cddc6-ba0a-4d60-b581-10f7498d5d78 status: 200 OK code: 200 duration: "" @@ -546,19 +546,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/b4fcfb7e-012f-49e2-a48a-fe1ad1710d78/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/c6492d61-52e0-42d0-8633-1535069b4b03/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:34 GMT + - Mon, 03 Jul 2023 20:16:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -568,7 +568,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ced1b1e3-e3e6-469c-944f-6bf1308a81c3 + - 8da428ea-9707-4fa7-9909-f56cb28ef1af status: 200 OK code: 200 duration: "" @@ -579,19 +579,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/b4fcfb7e-012f-49e2-a48a-fe1ad1710d78 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/c6492d61-52e0-42d0-8633-1535069b4b03 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:35:32.902867Z","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":null},"id":"d7d44ba1-a37b-48e2-aa6b-e32032e93d5b","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":1,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:35:04.357115Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-wonderful-cartwright","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:35:32.902867Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:35:33.617535Z","enable_http3":false,"id":"b4fcfb7e-012f-49e2-a48a-fe1ad1710d78","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":1,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:35:04.357115Z","zone":"fr-par-1"},"name":"tf-lb-frt-romantic-brattain","timeout_client":null,"updated_at":"2023-06-29T13:35:34.052112Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:16:30.989012Z","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":"ed481587-df65-4304-9706-02de1785ef1c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":1,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:16:02.992919Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-nervous-dewdney","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:16:30.989012Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:16:31.762750Z","enable_http3":false,"id":"c6492d61-52e0-42d0-8633-1535069b4b03","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":1,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:16:02.992919Z","zone":"fr-par-1"},"name":"tf-lb-frt-stoic-aryabhata","timeout_client":null,"updated_at":"2023-07-03T20:16:32.301064Z"}' headers: Content-Length: - - "2913" + - "2826" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:34 GMT + - Mon, 03 Jul 2023 20:16:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -601,7 +601,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61cb3671-ecf3-4c00-a628-260251d41326 + - d13a24c3-7f21-443f-a2f0-b069aef0333f status: 200 OK code: 200 duration: "" @@ -612,19 +612,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/b4fcfb7e-012f-49e2-a48a-fe1ad1710d78/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/c6492d61-52e0-42d0-8633-1535069b4b03/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:34 GMT + - Mon, 03 Jul 2023 20:16:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -634,12 +634,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 68a834d6-d217-47eb-bc0d-fb1d9f68a2a2 + - 59b40c61-818f-4e8a-8f5e-b275d2d18f2f status: 200 OK code: 200 duration: "" - request: - body: '{"frontend_id":"b4fcfb7e-012f-49e2-a48a-fe1ad1710d78","backend_id":"d7d44ba1-a37b-48e2-aa6b-e32032e93d5b","match":{"sni":"sni.scaleway.com"}}' + body: '{"frontend_id":"c6492d61-52e0-42d0-8633-1535069b4b03","backend_id":"ed481587-df65-4304-9706-02de1785ef1c","match":{"sni":"sni.scaleway.com"}}' form: {} headers: Content-Type: @@ -650,16 +650,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes method: POST response: - body: '{"backend_id":"d7d44ba1-a37b-48e2-aa6b-e32032e93d5b","created_at":"2023-06-29T13:35:34.781165663Z","frontend_id":"b4fcfb7e-012f-49e2-a48a-fe1ad1710d78","id":"579e420d-69ad-49aa-8672-78e7c7794e94","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-06-29T13:35:34.781165663Z"}' + body: '{"backend_id":"ed481587-df65-4304-9706-02de1785ef1c","created_at":"2023-07-03T20:16:32.961599282Z","frontend_id":"c6492d61-52e0-42d0-8633-1535069b4b03","id":"0dea1289-d08d-48ad-ba2b-f709efbf6b11","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-07-03T20:16:32.961599282Z"}' headers: Content-Length: - - "282" + - "277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:34 GMT + - Mon, 03 Jul 2023 20:16:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -669,7 +669,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f589e224-149b-4451-942b-946a2c6021dd + - a7538062-6431-4c12-80f2-14eb3f818cd9 status: 200 OK code: 200 duration: "" @@ -680,19 +680,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/579e420d-69ad-49aa-8672-78e7c7794e94 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/0dea1289-d08d-48ad-ba2b-f709efbf6b11 method: GET response: - body: '{"backend_id":"d7d44ba1-a37b-48e2-aa6b-e32032e93d5b","created_at":"2023-06-29T13:35:34.781166Z","frontend_id":"b4fcfb7e-012f-49e2-a48a-fe1ad1710d78","id":"579e420d-69ad-49aa-8672-78e7c7794e94","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-06-29T13:35:34.781166Z"}' + body: '{"backend_id":"ed481587-df65-4304-9706-02de1785ef1c","created_at":"2023-07-03T20:16:32.961599Z","frontend_id":"c6492d61-52e0-42d0-8633-1535069b4b03","id":"0dea1289-d08d-48ad-ba2b-f709efbf6b11","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-07-03T20:16:32.961599Z"}' headers: Content-Length: - - "276" + - "271" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:35 GMT + - Mon, 03 Jul 2023 20:16:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -702,7 +702,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e770eb53-a006-4191-981a-84ce09f530c1 + - 5a13fc59-e11f-44dd-99f1-23e0f7a2d82e status: 200 OK code: 200 duration: "" @@ -713,19 +713,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "319" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:35 GMT + - Mon, 03 Jul 2023 20:16:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -735,7 +735,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29544a14-8da0-42cb-8300-1f8629f9d801 + - b5d85952-7f18-4927-af63-806d077d9385 status: 200 OK code: 200 duration: "" @@ -746,19 +746,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/08a835d0-a987-4f23-ad71-e8892d12f9ca + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":1,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[{"created_at":"2023-06-29T13:33:54.654034Z","id":"25d0bf41-ad46-47fd-b2c0-ea7b1b2d297b","ip_address":"10.74.34.61","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:35:35.118954Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:35:04.357115Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":1,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[{"created_at":"2023-07-03T20:14:45.950314Z","id":"ce6b1a56-fba6-4a90-9174-1f4aefcb165b","ip_address":"10.64.192.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:16:33.316433Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:16:02.992919Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:35 GMT + - Mon, 03 Jul 2023 20:16:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -768,7 +768,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2cc036b-73cb-40e0-838a-898a941a0ee3 + - 810d4ed0-a048-4315-a142-f3d885689429 status: 200 OK code: 200 duration: "" @@ -779,19 +779,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/08a835d0-a987-4f23-ad71-e8892d12f9ca + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":1,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[{"created_at":"2023-06-29T13:33:54.654034Z","id":"25d0bf41-ad46-47fd-b2c0-ea7b1b2d297b","ip_address":"10.74.34.61","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:35:35.118954Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:35:04.357115Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":1,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[{"created_at":"2023-07-03T20:14:45.950314Z","id":"ce6b1a56-fba6-4a90-9174-1f4aefcb165b","ip_address":"10.64.192.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:16:33.316433Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:16:02.992919Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:35 GMT + - Mon, 03 Jul 2023 20:16:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -801,7 +801,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9972c15c-154f-4b2c-b710-9178cd14753d + - 6b3ab31c-51ec-4c18-921a-356652db2ac5 status: 200 OK code: 200 duration: "" @@ -812,19 +812,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/08a835d0-a987-4f23-ad71-e8892d12f9ca/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:35 GMT + - Mon, 03 Jul 2023 20:16:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -834,7 +834,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f1a7ae4-9596-4110-ac5a-43d10d01d5bf + - 2b3e661f-3fdb-4f76-a73e-286d16bea137 status: 200 OK code: 200 duration: "" @@ -845,19 +845,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/d7d44ba1-a37b-48e2-aa6b-e32032e93d5b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/ed481587-df65-4304-9706-02de1785ef1c method: GET response: - body: '{"created_at":"2023-06-29T13:35:32.902867Z","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":null},"id":"d7d44ba1-a37b-48e2-aa6b-e32032e93d5b","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":1,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[{"created_at":"2023-06-29T13:33:54.654034Z","id":"25d0bf41-ad46-47fd-b2c0-ea7b1b2d297b","ip_address":"10.74.34.61","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:35:35.118954Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:35:04.357115Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-wonderful-cartwright","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:35:32.902867Z"}' + body: '{"created_at":"2023-07-03T20:16:30.989012Z","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":"ed481587-df65-4304-9706-02de1785ef1c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":1,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[{"created_at":"2023-07-03T20:14:45.950314Z","id":"ce6b1a56-fba6-4a90-9174-1f4aefcb165b","ip_address":"10.64.192.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:16:33.316433Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:16:02.992919Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-nervous-dewdney","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:16:30.989012Z"}' headers: Content-Length: - - "1960" + - "1901" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:35 GMT + - Mon, 03 Jul 2023 20:16:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -867,7 +867,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37a62827-96d9-4e78-be8a-31ddaa00ea07 + - 37ab8cf2-a698-47ee-8d90-8159b7659ec3 status: 200 OK code: 200 duration: "" @@ -878,19 +878,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/08a835d0-a987-4f23-ad71-e8892d12f9ca + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":1,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[{"created_at":"2023-06-29T13:33:54.654034Z","id":"25d0bf41-ad46-47fd-b2c0-ea7b1b2d297b","ip_address":"10.74.34.61","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:35:35.118954Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:35:04.357115Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":1,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[{"created_at":"2023-07-03T20:14:45.950314Z","id":"ce6b1a56-fba6-4a90-9174-1f4aefcb165b","ip_address":"10.64.192.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:16:33.316433Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:16:02.992919Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:35 GMT + - Mon, 03 Jul 2023 20:16:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -900,7 +900,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e479f5c-43e5-478b-8d96-57bbb4825209 + - b5b647c6-97c2-43a7-b431-04c58236d92c status: 200 OK code: 200 duration: "" @@ -911,19 +911,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/b4fcfb7e-012f-49e2-a48a-fe1ad1710d78 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/c6492d61-52e0-42d0-8633-1535069b4b03 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:35:32.902867Z","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":null},"id":"d7d44ba1-a37b-48e2-aa6b-e32032e93d5b","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":1,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:35:04.357115Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-wonderful-cartwright","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:35:32.902867Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:35:33.617535Z","enable_http3":false,"id":"b4fcfb7e-012f-49e2-a48a-fe1ad1710d78","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":1,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:35:04.357115Z","zone":"fr-par-1"},"name":"tf-lb-frt-romantic-brattain","timeout_client":null,"updated_at":"2023-06-29T13:35:34.052112Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:16:30.989012Z","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":"ed481587-df65-4304-9706-02de1785ef1c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":1,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:16:02.992919Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-nervous-dewdney","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:16:30.989012Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:16:31.762750Z","enable_http3":false,"id":"c6492d61-52e0-42d0-8633-1535069b4b03","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":1,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:16:02.992919Z","zone":"fr-par-1"},"name":"tf-lb-frt-stoic-aryabhata","timeout_client":null,"updated_at":"2023-07-03T20:16:32.301064Z"}' headers: Content-Length: - - "2913" + - "2826" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:35 GMT + - Mon, 03 Jul 2023 20:16:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -933,7 +933,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f0fa467-eb5e-4214-b71a-b3e490080c3c + - 341e0eb2-4a95-431e-87bf-6f4aead5193d status: 200 OK code: 200 duration: "" @@ -944,19 +944,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/b4fcfb7e-012f-49e2-a48a-fe1ad1710d78/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/c6492d61-52e0-42d0-8633-1535069b4b03/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:36 GMT + - Mon, 03 Jul 2023 20:16:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -966,7 +966,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c534364e-96ae-4771-9a3b-396b2030257b + - 31de69a4-f1c5-45f8-84e1-c065cb750f4c status: 200 OK code: 200 duration: "" @@ -977,19 +977,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/579e420d-69ad-49aa-8672-78e7c7794e94 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/0dea1289-d08d-48ad-ba2b-f709efbf6b11 method: GET response: - body: '{"backend_id":"d7d44ba1-a37b-48e2-aa6b-e32032e93d5b","created_at":"2023-06-29T13:35:34.781166Z","frontend_id":"b4fcfb7e-012f-49e2-a48a-fe1ad1710d78","id":"579e420d-69ad-49aa-8672-78e7c7794e94","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-06-29T13:35:34.781166Z"}' + body: '{"backend_id":"ed481587-df65-4304-9706-02de1785ef1c","created_at":"2023-07-03T20:16:32.961599Z","frontend_id":"c6492d61-52e0-42d0-8633-1535069b4b03","id":"0dea1289-d08d-48ad-ba2b-f709efbf6b11","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-07-03T20:16:32.961599Z"}' headers: Content-Length: - - "276" + - "271" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:36 GMT + - Mon, 03 Jul 2023 20:16:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -999,7 +999,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5473fbd4-1c24-4e76-9a30-c0dcfc617353 + - 1c5f0ce4-937e-41df-81c2-592e14419f6d status: 200 OK code: 200 duration: "" @@ -1010,19 +1010,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "319" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:36 GMT + - Mon, 03 Jul 2023 20:16:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1032,7 +1032,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6288e9e-92cf-491e-af60-ec1cea95849c + - c11c2817-9eaa-4db8-b993-6d6fbbc418d5 status: 200 OK code: 200 duration: "" @@ -1043,19 +1043,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/08a835d0-a987-4f23-ad71-e8892d12f9ca + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":1,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[{"created_at":"2023-06-29T13:33:54.654034Z","id":"25d0bf41-ad46-47fd-b2c0-ea7b1b2d297b","ip_address":"10.74.34.61","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:35:35.118954Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:35:04.357115Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":1,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[{"created_at":"2023-07-03T20:14:45.950314Z","id":"ce6b1a56-fba6-4a90-9174-1f4aefcb165b","ip_address":"10.64.192.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:16:33.316433Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:16:02.992919Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:36 GMT + - Mon, 03 Jul 2023 20:16:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1065,7 +1065,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1babe085-2cb8-42e6-9930-72f942fb3306 + - 93837ce0-624e-41b6-8e50-ee8aaedf1ad3 status: 200 OK code: 200 duration: "" @@ -1076,19 +1076,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/08a835d0-a987-4f23-ad71-e8892d12f9ca + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":1,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[{"created_at":"2023-06-29T13:33:54.654034Z","id":"25d0bf41-ad46-47fd-b2c0-ea7b1b2d297b","ip_address":"10.74.34.61","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:35:35.118954Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:35:04.357115Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":1,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[{"created_at":"2023-07-03T20:14:45.950314Z","id":"ce6b1a56-fba6-4a90-9174-1f4aefcb165b","ip_address":"10.64.192.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:16:33.316433Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:16:02.992919Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:36 GMT + - Mon, 03 Jul 2023 20:16:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1098,7 +1098,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74a58782-fc5c-47f6-993d-5234e0e4f127 + - e94bb471-0263-43aa-ac46-de152784d00f status: 200 OK code: 200 duration: "" @@ -1109,19 +1109,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/08a835d0-a987-4f23-ad71-e8892d12f9ca/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:36 GMT + - Mon, 03 Jul 2023 20:16:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1131,7 +1131,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4d76365-4b51-498d-b052-e43a53a994e3 + - 0075e860-5b0e-4cb8-a767-39a0932d7c7b status: 200 OK code: 200 duration: "" @@ -1142,19 +1142,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/d7d44ba1-a37b-48e2-aa6b-e32032e93d5b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/ed481587-df65-4304-9706-02de1785ef1c method: GET response: - body: '{"created_at":"2023-06-29T13:35:32.902867Z","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":null},"id":"d7d44ba1-a37b-48e2-aa6b-e32032e93d5b","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":1,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[{"created_at":"2023-06-29T13:33:54.654034Z","id":"25d0bf41-ad46-47fd-b2c0-ea7b1b2d297b","ip_address":"10.74.34.61","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:35:35.118954Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:35:04.357115Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-wonderful-cartwright","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:35:32.902867Z"}' + body: '{"created_at":"2023-07-03T20:16:30.989012Z","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":"ed481587-df65-4304-9706-02de1785ef1c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":1,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[{"created_at":"2023-07-03T20:14:45.950314Z","id":"ce6b1a56-fba6-4a90-9174-1f4aefcb165b","ip_address":"10.64.192.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:16:33.316433Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:16:02.992919Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-nervous-dewdney","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:16:30.989012Z"}' headers: Content-Length: - - "1960" + - "1901" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:36 GMT + - Mon, 03 Jul 2023 20:16:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1164,7 +1164,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f355d3a1-321d-48c0-80b0-b9b05f87ded2 + - c2f54ddc-09d6-44cc-be0c-fb968c57d5d0 status: 200 OK code: 200 duration: "" @@ -1175,19 +1175,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/08a835d0-a987-4f23-ad71-e8892d12f9ca + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":1,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[{"created_at":"2023-06-29T13:33:54.654034Z","id":"25d0bf41-ad46-47fd-b2c0-ea7b1b2d297b","ip_address":"10.74.34.61","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:35:35.118954Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:35:04.357115Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":1,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[{"created_at":"2023-07-03T20:14:45.950314Z","id":"ce6b1a56-fba6-4a90-9174-1f4aefcb165b","ip_address":"10.64.192.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:16:33.316433Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:16:02.992919Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:36 GMT + - Mon, 03 Jul 2023 20:16:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1197,7 +1197,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b1dff27-c70a-4558-a967-6a8cf89b66e6 + - 85e405d4-c9a7-4df2-bf05-f8b35ab43094 status: 200 OK code: 200 duration: "" @@ -1208,19 +1208,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/b4fcfb7e-012f-49e2-a48a-fe1ad1710d78 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/c6492d61-52e0-42d0-8633-1535069b4b03 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:35:32.902867Z","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":null},"id":"d7d44ba1-a37b-48e2-aa6b-e32032e93d5b","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":1,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:35:04.357115Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-wonderful-cartwright","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:35:32.902867Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:35:33.617535Z","enable_http3":false,"id":"b4fcfb7e-012f-49e2-a48a-fe1ad1710d78","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":1,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:35:04.357115Z","zone":"fr-par-1"},"name":"tf-lb-frt-romantic-brattain","timeout_client":null,"updated_at":"2023-06-29T13:35:34.052112Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:16:30.989012Z","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":"ed481587-df65-4304-9706-02de1785ef1c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":1,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:16:02.992919Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-nervous-dewdney","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:16:30.989012Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:16:31.762750Z","enable_http3":false,"id":"c6492d61-52e0-42d0-8633-1535069b4b03","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":1,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:16:02.992919Z","zone":"fr-par-1"},"name":"tf-lb-frt-stoic-aryabhata","timeout_client":null,"updated_at":"2023-07-03T20:16:32.301064Z"}' headers: Content-Length: - - "2913" + - "2826" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:37 GMT + - Mon, 03 Jul 2023 20:16:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1230,7 +1230,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dfcfb2f3-5f87-4b61-a23a-89eae90b022f + - fedc8b02-9214-4406-814a-3747e7a8bb5e status: 200 OK code: 200 duration: "" @@ -1241,19 +1241,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/b4fcfb7e-012f-49e2-a48a-fe1ad1710d78/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/c6492d61-52e0-42d0-8633-1535069b4b03/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:37 GMT + - Mon, 03 Jul 2023 20:16:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1263,7 +1263,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 621e16cf-ea99-408e-900e-dbe7213acbd5 + - 036f6268-059f-4a6a-9eaa-4c701cc9cd71 status: 200 OK code: 200 duration: "" @@ -1274,19 +1274,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/579e420d-69ad-49aa-8672-78e7c7794e94 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/0dea1289-d08d-48ad-ba2b-f709efbf6b11 method: GET response: - body: '{"backend_id":"d7d44ba1-a37b-48e2-aa6b-e32032e93d5b","created_at":"2023-06-29T13:35:34.781166Z","frontend_id":"b4fcfb7e-012f-49e2-a48a-fe1ad1710d78","id":"579e420d-69ad-49aa-8672-78e7c7794e94","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-06-29T13:35:34.781166Z"}' + body: '{"backend_id":"ed481587-df65-4304-9706-02de1785ef1c","created_at":"2023-07-03T20:16:32.961599Z","frontend_id":"c6492d61-52e0-42d0-8633-1535069b4b03","id":"0dea1289-d08d-48ad-ba2b-f709efbf6b11","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-07-03T20:16:32.961599Z"}' headers: Content-Length: - - "276" + - "271" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:37 GMT + - Mon, 03 Jul 2023 20:16:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1296,12 +1296,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0830eca6-3c6f-46b6-a5a6-1b19d553b8a3 + - 9def3bbd-ab30-4676-bf4e-bd792b40843d status: 200 OK code: 200 duration: "" - request: - body: '{"frontend_id":"b4fcfb7e-012f-49e2-a48a-fe1ad1710d78","backend_id":"d7d44ba1-a37b-48e2-aa6b-e32032e93d5b","match":{"sni":"sni2.scaleway.com"}}' + body: '{"frontend_id":"c6492d61-52e0-42d0-8633-1535069b4b03","backend_id":"ed481587-df65-4304-9706-02de1785ef1c","match":{"sni":"sni2.scaleway.com"}}' form: {} headers: Content-Type: @@ -1312,16 +1312,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes method: POST response: - body: '{"backend_id":"d7d44ba1-a37b-48e2-aa6b-e32032e93d5b","created_at":"2023-06-29T13:35:37.814958219Z","frontend_id":"b4fcfb7e-012f-49e2-a48a-fe1ad1710d78","id":"e8f186c4-694e-4482-8456-c41b11070af4","match":{"sni":"sni2.scaleway.com"},"updated_at":"2023-06-29T13:35:37.814958219Z"}' + body: '{"backend_id":"ed481587-df65-4304-9706-02de1785ef1c","created_at":"2023-07-03T20:16:36.064478242Z","frontend_id":"c6492d61-52e0-42d0-8633-1535069b4b03","id":"f7ba9aee-6f4d-44f6-95e4-1cacaba7070d","match":{"sni":"sni2.scaleway.com"},"updated_at":"2023-07-03T20:16:36.064478242Z"}' headers: Content-Length: - - "283" + - "278" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:37 GMT + - Mon, 03 Jul 2023 20:16:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1331,7 +1331,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6273b42d-8eed-4804-85ac-e805c51c5dfc + - e16e7d51-d019-4a7e-9f0b-52a3966eefd8 status: 200 OK code: 200 duration: "" @@ -1342,19 +1342,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/e8f186c4-694e-4482-8456-c41b11070af4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/f7ba9aee-6f4d-44f6-95e4-1cacaba7070d method: GET response: - body: '{"backend_id":"d7d44ba1-a37b-48e2-aa6b-e32032e93d5b","created_at":"2023-06-29T13:35:37.814958Z","frontend_id":"b4fcfb7e-012f-49e2-a48a-fe1ad1710d78","id":"e8f186c4-694e-4482-8456-c41b11070af4","match":{"sni":"sni2.scaleway.com"},"updated_at":"2023-06-29T13:35:37.814958Z"}' + body: '{"backend_id":"ed481587-df65-4304-9706-02de1785ef1c","created_at":"2023-07-03T20:16:36.064478Z","frontend_id":"c6492d61-52e0-42d0-8633-1535069b4b03","id":"f7ba9aee-6f4d-44f6-95e4-1cacaba7070d","match":{"sni":"sni2.scaleway.com"},"updated_at":"2023-07-03T20:16:36.064478Z"}' headers: Content-Length: - - "277" + - "272" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:38 GMT + - Mon, 03 Jul 2023 20:16:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1364,7 +1364,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 89500070-e633-4236-acd9-8203f1d54bdd + - 5365c3d5-d2e3-4647-b8dc-22990ae3cb69 status: 200 OK code: 200 duration: "" @@ -1375,19 +1375,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes?frontend_id=b4fcfb7e-012f-49e2-a48a-fe1ad1710d78&order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes?frontend_id=c6492d61-52e0-42d0-8633-1535069b4b03&order_by=created_at_asc method: GET response: - body: '{"routes":[{"backend_id":"d7d44ba1-a37b-48e2-aa6b-e32032e93d5b","created_at":"2023-06-29T13:35:34.781166Z","frontend_id":"b4fcfb7e-012f-49e2-a48a-fe1ad1710d78","id":"579e420d-69ad-49aa-8672-78e7c7794e94","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-06-29T13:35:34.781166Z"},{"backend_id":"d7d44ba1-a37b-48e2-aa6b-e32032e93d5b","created_at":"2023-06-29T13:35:37.814958Z","frontend_id":"b4fcfb7e-012f-49e2-a48a-fe1ad1710d78","id":"e8f186c4-694e-4482-8456-c41b11070af4","match":{"sni":"sni2.scaleway.com"},"updated_at":"2023-06-29T13:35:37.814958Z"}],"total_count":2}' + body: '{"routes":[{"backend_id":"ed481587-df65-4304-9706-02de1785ef1c","created_at":"2023-07-03T20:16:32.961599Z","frontend_id":"c6492d61-52e0-42d0-8633-1535069b4b03","id":"0dea1289-d08d-48ad-ba2b-f709efbf6b11","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-07-03T20:16:32.961599Z"},{"backend_id":"ed481587-df65-4304-9706-02de1785ef1c","created_at":"2023-07-03T20:16:36.064478Z","frontend_id":"c6492d61-52e0-42d0-8633-1535069b4b03","id":"f7ba9aee-6f4d-44f6-95e4-1cacaba7070d","match":{"sni":"sni2.scaleway.com"},"updated_at":"2023-07-03T20:16:36.064478Z"}],"total_count":2}' headers: Content-Length: - - "585" + - "573" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:38 GMT + - Mon, 03 Jul 2023 20:16:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1397,7 +1397,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02297e45-d42b-4073-ab3e-5beb87651312 + - 08d79bd3-3e09-4ff7-8a9c-b7347f2ecc41 status: 200 OK code: 200 duration: "" @@ -1408,19 +1408,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes?frontend_id=b4fcfb7e-012f-49e2-a48a-fe1ad1710d78&order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes?frontend_id=c6492d61-52e0-42d0-8633-1535069b4b03&order_by=created_at_asc method: GET response: - body: '{"routes":[{"backend_id":"d7d44ba1-a37b-48e2-aa6b-e32032e93d5b","created_at":"2023-06-29T13:35:34.781166Z","frontend_id":"b4fcfb7e-012f-49e2-a48a-fe1ad1710d78","id":"579e420d-69ad-49aa-8672-78e7c7794e94","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-06-29T13:35:34.781166Z"},{"backend_id":"d7d44ba1-a37b-48e2-aa6b-e32032e93d5b","created_at":"2023-06-29T13:35:37.814958Z","frontend_id":"b4fcfb7e-012f-49e2-a48a-fe1ad1710d78","id":"e8f186c4-694e-4482-8456-c41b11070af4","match":{"sni":"sni2.scaleway.com"},"updated_at":"2023-06-29T13:35:37.814958Z"}],"total_count":2}' + body: '{"routes":[{"backend_id":"ed481587-df65-4304-9706-02de1785ef1c","created_at":"2023-07-03T20:16:32.961599Z","frontend_id":"c6492d61-52e0-42d0-8633-1535069b4b03","id":"0dea1289-d08d-48ad-ba2b-f709efbf6b11","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-07-03T20:16:32.961599Z"},{"backend_id":"ed481587-df65-4304-9706-02de1785ef1c","created_at":"2023-07-03T20:16:36.064478Z","frontend_id":"c6492d61-52e0-42d0-8633-1535069b4b03","id":"f7ba9aee-6f4d-44f6-95e4-1cacaba7070d","match":{"sni":"sni2.scaleway.com"},"updated_at":"2023-07-03T20:16:36.064478Z"}],"total_count":2}' headers: Content-Length: - - "585" + - "573" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:38 GMT + - Mon, 03 Jul 2023 20:16:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1430,7 +1430,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 341b7fd4-f0b5-447d-b175-2f8fbf881ac2 + - db948275-2826-4473-8eb6-a0fd95c16e65 status: 200 OK code: 200 duration: "" @@ -1441,19 +1441,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "319" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:38 GMT + - Mon, 03 Jul 2023 20:16:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1463,7 +1463,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b9bc51c-e947-4fab-b5ad-de69f9696472 + - 62d3d9d8-27b4-4c00-91b8-6c927418bcae status: 200 OK code: 200 duration: "" @@ -1474,19 +1474,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/08a835d0-a987-4f23-ad71-e8892d12f9ca + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":1,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[{"created_at":"2023-06-29T13:33:54.654034Z","id":"25d0bf41-ad46-47fd-b2c0-ea7b1b2d297b","ip_address":"10.74.34.61","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:35:38.230967Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":2,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:35:04.357115Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":1,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[{"created_at":"2023-07-03T20:14:45.950314Z","id":"ce6b1a56-fba6-4a90-9174-1f4aefcb165b","ip_address":"10.64.192.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:16:36.387607Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":2,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:16:02.992919Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:38 GMT + - Mon, 03 Jul 2023 20:16:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1496,7 +1496,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c0fba1c-40c0-430f-9840-54146c3efc30 + - 04c8d0ef-0fbf-4e81-bda6-512da1c0f726 status: 200 OK code: 200 duration: "" @@ -1507,19 +1507,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/08a835d0-a987-4f23-ad71-e8892d12f9ca + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":1,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[{"created_at":"2023-06-29T13:33:54.654034Z","id":"25d0bf41-ad46-47fd-b2c0-ea7b1b2d297b","ip_address":"10.74.34.61","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:35:38.230967Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":2,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:35:04.357115Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":1,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[{"created_at":"2023-07-03T20:14:45.950314Z","id":"ce6b1a56-fba6-4a90-9174-1f4aefcb165b","ip_address":"10.64.192.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:16:36.387607Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":2,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:16:02.992919Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:38 GMT + - Mon, 03 Jul 2023 20:16:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1529,7 +1529,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf01a0fe-9e14-4681-968e-69090198612a + - 0adfd923-9f6d-4eab-a37e-4a19b9d542a0 status: 200 OK code: 200 duration: "" @@ -1540,19 +1540,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/08a835d0-a987-4f23-ad71-e8892d12f9ca/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:39 GMT + - Mon, 03 Jul 2023 20:16:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1562,7 +1562,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8514b13a-d5c8-42fb-9def-49dac11bcea8 + - 0660ebba-146d-4549-93e4-fa323662a451 status: 200 OK code: 200 duration: "" @@ -1573,19 +1573,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/d7d44ba1-a37b-48e2-aa6b-e32032e93d5b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/ed481587-df65-4304-9706-02de1785ef1c method: GET response: - body: '{"created_at":"2023-06-29T13:35:32.902867Z","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":null},"id":"d7d44ba1-a37b-48e2-aa6b-e32032e93d5b","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":1,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[{"created_at":"2023-06-29T13:33:54.654034Z","id":"25d0bf41-ad46-47fd-b2c0-ea7b1b2d297b","ip_address":"10.74.34.61","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:35:38.230967Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":2,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:35:04.357115Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-wonderful-cartwright","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:35:32.902867Z"}' + body: '{"created_at":"2023-07-03T20:16:30.989012Z","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":"ed481587-df65-4304-9706-02de1785ef1c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":1,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[{"created_at":"2023-07-03T20:14:45.950314Z","id":"ce6b1a56-fba6-4a90-9174-1f4aefcb165b","ip_address":"10.64.192.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:16:36.387607Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":2,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:16:02.992919Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-nervous-dewdney","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:16:30.989012Z"}' headers: Content-Length: - - "1960" + - "1901" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:39 GMT + - Mon, 03 Jul 2023 20:16:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1595,7 +1595,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23256a2e-ed84-41f3-a788-e0ea22e23c01 + - 0b921fbb-cb54-40aa-bbd5-57fa95f5931e status: 200 OK code: 200 duration: "" @@ -1606,19 +1606,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/08a835d0-a987-4f23-ad71-e8892d12f9ca + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":1,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[{"created_at":"2023-06-29T13:33:54.654034Z","id":"25d0bf41-ad46-47fd-b2c0-ea7b1b2d297b","ip_address":"10.74.34.61","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:35:38.230967Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":2,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:35:04.357115Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":1,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[{"created_at":"2023-07-03T20:14:45.950314Z","id":"ce6b1a56-fba6-4a90-9174-1f4aefcb165b","ip_address":"10.64.192.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:16:36.387607Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":2,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:16:02.992919Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:39 GMT + - Mon, 03 Jul 2023 20:16:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1628,7 +1628,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dbff8cbf-c58b-4e0c-9959-d9fb240cbf67 + - 568f8cd6-6e73-4b4f-bccb-b709542cf11d status: 200 OK code: 200 duration: "" @@ -1639,19 +1639,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/b4fcfb7e-012f-49e2-a48a-fe1ad1710d78 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/c6492d61-52e0-42d0-8633-1535069b4b03 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:35:32.902867Z","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":null},"id":"d7d44ba1-a37b-48e2-aa6b-e32032e93d5b","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":1,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":2,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:35:04.357115Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-wonderful-cartwright","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:35:32.902867Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:35:33.617535Z","enable_http3":false,"id":"b4fcfb7e-012f-49e2-a48a-fe1ad1710d78","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":1,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":2,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:35:04.357115Z","zone":"fr-par-1"},"name":"tf-lb-frt-romantic-brattain","timeout_client":null,"updated_at":"2023-06-29T13:35:34.052112Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:16:30.989012Z","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":"ed481587-df65-4304-9706-02de1785ef1c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":1,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":2,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:16:02.992919Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-nervous-dewdney","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:16:30.989012Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:16:31.762750Z","enable_http3":false,"id":"c6492d61-52e0-42d0-8633-1535069b4b03","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":1,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":2,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:16:02.992919Z","zone":"fr-par-1"},"name":"tf-lb-frt-stoic-aryabhata","timeout_client":null,"updated_at":"2023-07-03T20:16:32.301064Z"}' headers: Content-Length: - - "2913" + - "2826" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:39 GMT + - Mon, 03 Jul 2023 20:16:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1661,7 +1661,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b198fe91-4cc5-4cbe-aa8b-9769b0878db4 + - 06710866-8b3a-44f9-b5e6-edce543427c9 status: 200 OK code: 200 duration: "" @@ -1672,19 +1672,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/b4fcfb7e-012f-49e2-a48a-fe1ad1710d78/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/c6492d61-52e0-42d0-8633-1535069b4b03/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:39 GMT + - Mon, 03 Jul 2023 20:16:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1694,7 +1694,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05cf19b2-ffb9-46c3-a767-8bed4946573e + - f3076b3e-54b0-47bd-a86c-3caebe71c77c status: 200 OK code: 200 duration: "" @@ -1705,19 +1705,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/579e420d-69ad-49aa-8672-78e7c7794e94 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/0dea1289-d08d-48ad-ba2b-f709efbf6b11 method: GET response: - body: '{"backend_id":"d7d44ba1-a37b-48e2-aa6b-e32032e93d5b","created_at":"2023-06-29T13:35:34.781166Z","frontend_id":"b4fcfb7e-012f-49e2-a48a-fe1ad1710d78","id":"579e420d-69ad-49aa-8672-78e7c7794e94","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-06-29T13:35:34.781166Z"}' + body: '{"backend_id":"ed481587-df65-4304-9706-02de1785ef1c","created_at":"2023-07-03T20:16:32.961599Z","frontend_id":"c6492d61-52e0-42d0-8633-1535069b4b03","id":"0dea1289-d08d-48ad-ba2b-f709efbf6b11","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-07-03T20:16:32.961599Z"}' headers: Content-Length: - - "276" + - "271" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:39 GMT + - Mon, 03 Jul 2023 20:16:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1727,7 +1727,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b887407-9121-4793-b513-727a6498eb62 + - 60854f04-cb80-4a7c-b8f4-e2fa234a09a4 status: 200 OK code: 200 duration: "" @@ -1738,19 +1738,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/e8f186c4-694e-4482-8456-c41b11070af4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/f7ba9aee-6f4d-44f6-95e4-1cacaba7070d method: GET response: - body: '{"backend_id":"d7d44ba1-a37b-48e2-aa6b-e32032e93d5b","created_at":"2023-06-29T13:35:37.814958Z","frontend_id":"b4fcfb7e-012f-49e2-a48a-fe1ad1710d78","id":"e8f186c4-694e-4482-8456-c41b11070af4","match":{"sni":"sni2.scaleway.com"},"updated_at":"2023-06-29T13:35:37.814958Z"}' + body: '{"backend_id":"ed481587-df65-4304-9706-02de1785ef1c","created_at":"2023-07-03T20:16:36.064478Z","frontend_id":"c6492d61-52e0-42d0-8633-1535069b4b03","id":"f7ba9aee-6f4d-44f6-95e4-1cacaba7070d","match":{"sni":"sni2.scaleway.com"},"updated_at":"2023-07-03T20:16:36.064478Z"}' headers: Content-Length: - - "277" + - "272" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:39 GMT + - Mon, 03 Jul 2023 20:16:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1760,7 +1760,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c8def783-ff4f-421a-a4ba-404bd939fba7 + - 1f27b4a6-2183-42a4-aa6e-64e38f1b2bbb status: 200 OK code: 200 duration: "" @@ -1771,19 +1771,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes?frontend_id=b4fcfb7e-012f-49e2-a48a-fe1ad1710d78&order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes?frontend_id=c6492d61-52e0-42d0-8633-1535069b4b03&order_by=created_at_asc method: GET response: - body: '{"routes":[{"backend_id":"d7d44ba1-a37b-48e2-aa6b-e32032e93d5b","created_at":"2023-06-29T13:35:34.781166Z","frontend_id":"b4fcfb7e-012f-49e2-a48a-fe1ad1710d78","id":"579e420d-69ad-49aa-8672-78e7c7794e94","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-06-29T13:35:34.781166Z"},{"backend_id":"d7d44ba1-a37b-48e2-aa6b-e32032e93d5b","created_at":"2023-06-29T13:35:37.814958Z","frontend_id":"b4fcfb7e-012f-49e2-a48a-fe1ad1710d78","id":"e8f186c4-694e-4482-8456-c41b11070af4","match":{"sni":"sni2.scaleway.com"},"updated_at":"2023-06-29T13:35:37.814958Z"}],"total_count":2}' + body: '{"routes":[{"backend_id":"ed481587-df65-4304-9706-02de1785ef1c","created_at":"2023-07-03T20:16:32.961599Z","frontend_id":"c6492d61-52e0-42d0-8633-1535069b4b03","id":"0dea1289-d08d-48ad-ba2b-f709efbf6b11","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-07-03T20:16:32.961599Z"},{"backend_id":"ed481587-df65-4304-9706-02de1785ef1c","created_at":"2023-07-03T20:16:36.064478Z","frontend_id":"c6492d61-52e0-42d0-8633-1535069b4b03","id":"f7ba9aee-6f4d-44f6-95e4-1cacaba7070d","match":{"sni":"sni2.scaleway.com"},"updated_at":"2023-07-03T20:16:36.064478Z"}],"total_count":2}' headers: Content-Length: - - "585" + - "573" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:39 GMT + - Mon, 03 Jul 2023 20:16:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1793,7 +1793,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f2fb8e8-a279-4ee2-9f26-55624178ed6d + - 702dd60a-66bf-4e17-b499-0c24d27ddd58 status: 200 OK code: 200 duration: "" @@ -1804,19 +1804,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes?frontend_id=b4fcfb7e-012f-49e2-a48a-fe1ad1710d78&order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes?frontend_id=c6492d61-52e0-42d0-8633-1535069b4b03&order_by=created_at_asc method: GET response: - body: '{"routes":[{"backend_id":"d7d44ba1-a37b-48e2-aa6b-e32032e93d5b","created_at":"2023-06-29T13:35:34.781166Z","frontend_id":"b4fcfb7e-012f-49e2-a48a-fe1ad1710d78","id":"579e420d-69ad-49aa-8672-78e7c7794e94","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-06-29T13:35:34.781166Z"},{"backend_id":"d7d44ba1-a37b-48e2-aa6b-e32032e93d5b","created_at":"2023-06-29T13:35:37.814958Z","frontend_id":"b4fcfb7e-012f-49e2-a48a-fe1ad1710d78","id":"e8f186c4-694e-4482-8456-c41b11070af4","match":{"sni":"sni2.scaleway.com"},"updated_at":"2023-06-29T13:35:37.814958Z"}],"total_count":2}' + body: '{"routes":[{"backend_id":"ed481587-df65-4304-9706-02de1785ef1c","created_at":"2023-07-03T20:16:32.961599Z","frontend_id":"c6492d61-52e0-42d0-8633-1535069b4b03","id":"0dea1289-d08d-48ad-ba2b-f709efbf6b11","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-07-03T20:16:32.961599Z"},{"backend_id":"ed481587-df65-4304-9706-02de1785ef1c","created_at":"2023-07-03T20:16:36.064478Z","frontend_id":"c6492d61-52e0-42d0-8633-1535069b4b03","id":"f7ba9aee-6f4d-44f6-95e4-1cacaba7070d","match":{"sni":"sni2.scaleway.com"},"updated_at":"2023-07-03T20:16:36.064478Z"}],"total_count":2}' headers: Content-Length: - - "585" + - "573" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:39 GMT + - Mon, 03 Jul 2023 20:16:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1826,7 +1826,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bad49896-8bef-42b6-ab90-07ce42b087d7 + - 75a06647-ac13-4bb7-8199-d970befe4c3a status: 200 OK code: 200 duration: "" @@ -1837,7 +1837,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/e8f186c4-694e-4482-8456-c41b11070af4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/0dea1289-d08d-48ad-ba2b-f709efbf6b11 method: DELETE response: body: "" @@ -1847,7 +1847,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:40 GMT + - Mon, 03 Jul 2023 20:16:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1857,7 +1857,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29104330-17db-4f1f-b26f-3fd4e59beada + - 20e27ff0-4ca9-4569-8a06-dad8316f55c4 status: 204 No Content code: 204 duration: "" @@ -1868,7 +1868,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/579e420d-69ad-49aa-8672-78e7c7794e94 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/f7ba9aee-6f4d-44f6-95e4-1cacaba7070d method: DELETE response: body: "" @@ -1878,7 +1878,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:40 GMT + - Mon, 03 Jul 2023 20:16:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1888,7 +1888,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7d1883e-0a22-453a-aabd-36a3604bc7d6 + - ff14270f-07ee-4bdc-8611-144aee142644 status: 204 No Content code: 204 duration: "" @@ -1899,7 +1899,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/b4fcfb7e-012f-49e2-a48a-fe1ad1710d78 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/c6492d61-52e0-42d0-8633-1535069b4b03 method: DELETE response: body: "" @@ -1909,7 +1909,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:40 GMT + - Mon, 03 Jul 2023 20:16:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1919,7 +1919,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc0378c3-e586-45a6-9c22-94be2a153132 + - b483294d-8e2e-4a5c-80e9-60004cf40a1c status: 204 No Content code: 204 duration: "" @@ -1930,19 +1930,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/08a835d0-a987-4f23-ad71-e8892d12f9ca + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":0,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[{"created_at":"2023-06-29T13:33:54.654034Z","id":"25d0bf41-ad46-47fd-b2c0-ea7b1b2d297b","ip_address":"10.74.34.61","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:35:40.690052Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:35:04.357115Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":0,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[{"created_at":"2023-07-03T20:14:45.950314Z","id":"ce6b1a56-fba6-4a90-9174-1f4aefcb165b","ip_address":"10.64.192.5","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:16:38.955585Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:16:02.992919Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:40 GMT + - Mon, 03 Jul 2023 20:16:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1952,7 +1952,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b0cd1ad-48d2-43cf-a7cf-774e6039d163 + - 66114f27-0b6d-412a-a03e-ce198fad3951 status: 200 OK code: 200 duration: "" @@ -1963,19 +1963,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/08a835d0-a987-4f23-ad71-e8892d12f9ca + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":0,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[{"created_at":"2023-06-29T13:33:54.654034Z","id":"25d0bf41-ad46-47fd-b2c0-ea7b1b2d297b","ip_address":"10.74.34.61","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:35:40.690052Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:35:04.357115Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":0,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[{"created_at":"2023-07-03T20:14:45.950314Z","id":"ce6b1a56-fba6-4a90-9174-1f4aefcb165b","ip_address":"10.64.192.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:16:39.255429Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:16:02.992919Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:41 GMT + - Mon, 03 Jul 2023 20:16:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1985,7 +1985,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9dd2506e-4ea7-44ba-81cb-591bfe37108f + - 4af0f9e7-b5ac-477f-bce4-f678739f5e7e status: 200 OK code: 200 duration: "" @@ -1996,7 +1996,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/d7d44ba1-a37b-48e2-aa6b-e32032e93d5b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/ed481587-df65-4304-9706-02de1785ef1c method: DELETE response: body: "" @@ -2006,7 +2006,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:41 GMT + - Mon, 03 Jul 2023 20:16:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2016,7 +2016,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe77367f-30ee-435f-bdf5-621809036993 + - dda8e17a-ffd5-4727-ad65-72db604b4977 status: 204 No Content code: 204 duration: "" @@ -2027,19 +2027,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/08a835d0-a987-4f23-ad71-e8892d12f9ca + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":0,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[{"created_at":"2023-06-29T13:33:54.654034Z","id":"25d0bf41-ad46-47fd-b2c0-ea7b1b2d297b","ip_address":"10.74.34.61","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:35:41.202851Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:35:04.357115Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":0,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[{"created_at":"2023-07-03T20:14:45.950314Z","id":"ce6b1a56-fba6-4a90-9174-1f4aefcb165b","ip_address":"10.64.192.5","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:16:39.469619Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:16:02.992919Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:41 GMT + - Mon, 03 Jul 2023 20:16:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2049,7 +2049,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc314a3b-0f8b-4665-b6e9-d5d4efe69c77 + - 0a642e23-89d7-4411-b927-ee07618816f8 status: 200 OK code: 200 duration: "" @@ -2060,19 +2060,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/08a835d0-a987-4f23-ad71-e8892d12f9ca + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":0,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[{"created_at":"2023-06-29T13:33:54.654034Z","id":"25d0bf41-ad46-47fd-b2c0-ea7b1b2d297b","ip_address":"10.74.34.61","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:35:41.202851Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:35:04.357115Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":0,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[{"created_at":"2023-07-03T20:14:45.950314Z","id":"ce6b1a56-fba6-4a90-9174-1f4aefcb165b","ip_address":"10.64.192.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:16:39.732466Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:16:02.992919Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:41 GMT + - Mon, 03 Jul 2023 20:16:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2082,7 +2082,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42a74c3e-2fdf-41e0-93b7-7ef1a0b657ba + - cb98eed8-88e0-4822-bdaa-5327da4c90ff status: 200 OK code: 200 duration: "" @@ -2093,7 +2093,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/08a835d0-a987-4f23-ad71-e8892d12f9ca?release_ip=false + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc?release_ip=false method: DELETE response: body: "" @@ -2103,7 +2103,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:41 GMT + - Mon, 03 Jul 2023 20:16:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2113,7 +2113,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8a39b91-6682-4851-8a93-bf60c0f570fc + - f11b6cbd-f004-422a-acf3-9cee7874ee83 status: 204 No Content code: 204 duration: "" @@ -2124,19 +2124,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/08a835d0-a987-4f23-ad71-e8892d12f9ca + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:35:02.149631Z","description":"","frontend_count":0,"id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","instances":[{"created_at":"2023-06-29T13:33:54.654034Z","id":"25d0bf41-ad46-47fd-b2c0-ea7b1b2d297b","ip_address":"10.74.34.61","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:35:41.481480Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"08a835d0-a987-4f23-ad71-e8892d12f9ca","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:35:41.627991Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:16:00.291365Z","description":"","frontend_count":0,"id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","instances":[{"created_at":"2023-07-03T20:14:45.950314Z","id":"ce6b1a56-fba6-4a90-9174-1f4aefcb165b","ip_address":"10.64.192.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:16:39.732466Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:16:39.898368Z","zone":"fr-par-1"}' headers: Content-Length: - - "1095" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:35:41 GMT + - Mon, 03 Jul 2023 20:16:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2146,7 +2146,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 820e92e3-5f86-422d-a258-db8b3cc735ee + - 6007c8a3-7d42-4be6-97bf-0e0f7a4d987e status: 200 OK code: 200 duration: "" @@ -2157,7 +2157,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/08a835d0-a987-4f23-ad71-e8892d12f9ca + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc method: GET response: body: '{"message":"lbs not Found"}' @@ -2169,7 +2169,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:11 GMT + - Mon, 03 Jul 2023 20:17:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2179,7 +2179,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02ccdd48-6d96-48c7-afe9-b7b3bf48de05 + - 17a806b1-bd73-4fa0-b2aa-aa8d9007b1b4 status: 404 Not Found code: 404 duration: "" @@ -2190,7 +2190,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/08a835d0-a987-4f23-ad71-e8892d12f9ca + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc method: GET response: body: '{"message":"lbs not Found"}' @@ -2202,7 +2202,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:11 GMT + - Mon, 03 Jul 2023 20:17:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2212,7 +2212,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06f7b91e-2dda-43af-8e98-691765bf72ba + - aab9c480-6b3d-4684-99b6-3e29e3f903b2 status: 404 Not Found code: 404 duration: "" @@ -2223,19 +2223,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "285" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:11 GMT + - Mon, 03 Jul 2023 20:17:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2245,7 +2245,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86a4a7fb-0133-4819-ae21-7300deb67ae2 + - 9ba75214-e4e2-4366-982c-371c0c054173 status: 200 OK code: 200 duration: "" @@ -2256,7 +2256,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: DELETE response: body: "" @@ -2266,7 +2266,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:12 GMT + - Mon, 03 Jul 2023 20:17:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2276,7 +2276,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 947dd262-d70a-4a7b-a0cd-df5e79263480 + - 0c7ea55b-12bd-4b84-b443-a9b7e545e6b2 status: 204 No Content code: 204 duration: "" @@ -2287,7 +2287,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/08a835d0-a987-4f23-ad71-e8892d12f9ca + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/8c4bfaf5-2d7b-42d0-9d27-3678bd5886dc method: GET response: body: '{"message":"lbs not Found"}' @@ -2299,7 +2299,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:36:12 GMT + - Mon, 03 Jul 2023 20:17:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2309,7 +2309,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34777f0e-83c0-4f90-9f39-d57a72950dbe + - 0f424cc8-0345-47a1-bd8d-3525f3dfe243 status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/lb-backend-basic.cassette.yaml b/scaleway/testdata/lb-backend-basic.cassette.yaml index cd492e59e0..b67a79526a 100644 --- a/scaleway/testdata/lb-backend-basic.cassette.yaml +++ b/scaleway/testdata/lb-backend-basic.cassette.yaml @@ -13,16 +13,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips method: POST response: - body: '{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "281" + - "278" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:00 GMT + - Mon, 03 Jul 2023 19:46:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -32,7 +32,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2fcf7f7e-f1be-4807-b4bb-f89dc3771eae + - 178e2dc5-78f8-4553-9266-e3275c2375f2 status: 200 OK code: 200 duration: "" @@ -43,19 +43,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c72d33d7-6925-4ac2-8498-c249d2e8d4ee + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66 method: GET response: - body: '{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "281" + - "278" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:00 GMT + - Mon, 03 Jul 2023 19:46:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -65,12 +65,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d16647c5-7a76-45d4-bd56-5b33ab6d0a2a + - 614e5e2a-c553-4116-951d-1e824d907c67 status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-lb","description":"","ip_id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","assign_flexible_ip":null,"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":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","assign_flexible_ip":null,"tags":null,"type":"lb-s","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' form: {} headers: Content-Type: @@ -81,16 +81,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs method: POST response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:11:00.872051430Z","description":"","frontend_count":0,"id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","instances":[],"ip":[{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","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":"2023-06-29T13:11:00.872051430Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T19:46:34.282376251Z","description":"","frontend_count":0,"id":"85c3851a-9159-425e-8183-48e0634abf27","instances":[],"ip":[{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":"85c3851a-9159-425e-8183-48e0634abf27","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","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":"2023-07-03T19:46:34.282376251Z","zone":"fr-par-1"}' headers: Content-Length: - - "880" + - "858" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:01 GMT + - Mon, 03 Jul 2023 19:46:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -100,7 +100,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2395afa-4ad5-4cd2-8198-01d2ffba548e + - f7411e3a-6fc4-4355-a066-2aa164e108af status: 200 OK code: 200 duration: "" @@ -116,18 +116,18 @@ interactions: url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip":{"address":"51.15.207.142","id":"2d7bc003-aa3c-4a47-9694-36a765cc1cdf","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","prefix":null,"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null,"server":null,"state":"attached","tags":[],"type":"nat","zone":"fr-par-1"}}' + body: '{"ip":{"address":"163.172.171.183","id":"48ffe756-9aac-4b45-93c8-ea56d9fe8304","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","prefix":null,"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null,"server":null,"state":"attached","tags":[],"type":"nat","zone":"fr-par-1"}}' headers: Content-Length: - - "306" + - "308" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:01 GMT + - Mon, 03 Jul 2023 19:46:34 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2d7bc003-aa3c-4a47-9694-36a765cc1cdf + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/48ffe756-9aac-4b45-93c8-ea56d9fe8304 Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -137,7 +137,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e24a064-57b7-4609-8ee4-afef98b49103 + - 1fc77a70-399e-4e9f-85d1-a3c3eb100d4f status: 201 Created code: 201 duration: "" @@ -148,19 +148,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d6c30ca1-bb28-4aaf-969a-11908bcdf353 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/85c3851a-9159-425e-8183-48e0634abf27 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:11:00.872051Z","description":"","frontend_count":0,"id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","instances":[],"ip":[{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","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":"2023-06-29T13:11:00.872051Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T19:46:34.282376Z","description":"","frontend_count":0,"id":"85c3851a-9159-425e-8183-48e0634abf27","instances":[],"ip":[{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":"85c3851a-9159-425e-8183-48e0634abf27","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","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":"2023-07-03T19:46:34.282376Z","zone":"fr-par-1"}' headers: Content-Length: - - "874" + - "852" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:01 GMT + - Mon, 03 Jul 2023 19:46:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -170,7 +170,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa0721e5-c404-4547-9b49-e2ffa8aa5f54 + - d8c8b759-247b-4a0e-bc47-ed4264a5051a status: 200 OK code: 200 duration: "" @@ -181,19 +181,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2d7bc003-aa3c-4a47-9694-36a765cc1cdf + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/48ffe756-9aac-4b45-93c8-ea56d9fe8304 method: GET response: - body: '{"ip":{"address":"51.15.207.142","id":"2d7bc003-aa3c-4a47-9694-36a765cc1cdf","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","prefix":null,"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null,"server":null,"state":"attached","tags":[],"type":"nat","zone":"fr-par-1"}}' + body: '{"ip":{"address":"163.172.171.183","id":"48ffe756-9aac-4b45-93c8-ea56d9fe8304","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","prefix":null,"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null,"server":null,"state":"attached","tags":[],"type":"nat","zone":"fr-par-1"}}' headers: Content-Length: - - "306" + - "308" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:01 GMT + - Mon, 03 Jul 2023 19:46:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -203,7 +203,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7639e4d-24fc-4e94-a27f-fc4fbafcb644 + - d58b0e97-14bf-4d53-b11a-b24b60631b36 status: 200 OK code: 200 duration: "" @@ -214,19 +214,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d6c30ca1-bb28-4aaf-969a-11908bcdf353 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/85c3851a-9159-425e-8183-48e0634abf27 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:11:00.872051Z","description":"","frontend_count":0,"id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","instances":[{"created_at":"2023-06-29T13:09:44.587190Z","id":"e14718ed-8260-4c49-9eaa-c0cb6cf3a225","ip_address":"10.64.216.131","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:11:02.293722Z","zone":"fr-par-1"}],"ip":[{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","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":"2023-06-29T13:11:03.475351Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T19:46:34.282376Z","description":"","frontend_count":0,"id":"85c3851a-9159-425e-8183-48e0634abf27","instances":[{"created_at":"2023-07-03T19:44:25.767021Z","id":"dd53c7f1-2bf4-482b-84ed-b73c46afe6c0","ip_address":"10.64.120.35","region":"fr-par","status":"ready","updated_at":"2023-07-03T19:46:35.702854Z","zone":"fr-par-1"}],"ip":[{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":"85c3851a-9159-425e-8183-48e0634abf27","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","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":"2023-07-03T19:46:36.887199Z","zone":"fr-par-1"}' headers: Content-Length: - - "1089" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:31 GMT + - Mon, 03 Jul 2023 19:47:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -236,7 +236,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0346ad33-6683-4bb1-bfeb-639c2182585c + - 93119596-8df4-4048-9383-deabe05314a0 status: 200 OK code: 200 duration: "" @@ -247,19 +247,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d6c30ca1-bb28-4aaf-969a-11908bcdf353 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/85c3851a-9159-425e-8183-48e0634abf27 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:11:00.872051Z","description":"","frontend_count":0,"id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","instances":[{"created_at":"2023-06-29T13:09:44.587190Z","id":"e14718ed-8260-4c49-9eaa-c0cb6cf3a225","ip_address":"10.64.216.131","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:11:02.293722Z","zone":"fr-par-1"}],"ip":[{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","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":"2023-06-29T13:11:03.475351Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T19:46:34.282376Z","description":"","frontend_count":0,"id":"85c3851a-9159-425e-8183-48e0634abf27","instances":[{"created_at":"2023-07-03T19:44:25.767021Z","id":"dd53c7f1-2bf4-482b-84ed-b73c46afe6c0","ip_address":"10.64.120.35","region":"fr-par","status":"ready","updated_at":"2023-07-03T19:46:35.702854Z","zone":"fr-par-1"}],"ip":[{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":"85c3851a-9159-425e-8183-48e0634abf27","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","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":"2023-07-03T19:46:36.887199Z","zone":"fr-par-1"}' headers: Content-Length: - - "1089" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:31 GMT + - Mon, 03 Jul 2023 19:47:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -269,7 +269,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e8f35b2e-c8ad-46c9-b6e8-2ceb80050db6 + - 9e11e1b6-0cd0-4c9d-9a13-41b78afd6df5 status: 200 OK code: 200 duration: "" @@ -280,19 +280,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d6c30ca1-bb28-4aaf-969a-11908bcdf353/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/85c3851a-9159-425e-8183-48e0634abf27/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:31 GMT + - Mon, 03 Jul 2023 19:47:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -302,7 +302,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3246a8e1-3ea6-4cc8-b5cd-943412d109f8 + - d3bcf6fd-c87a-409e-9263-6bc38914842c status: 200 OK code: 200 duration: "" @@ -313,19 +313,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d6c30ca1-bb28-4aaf-969a-11908bcdf353 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/85c3851a-9159-425e-8183-48e0634abf27 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:11:00.872051Z","description":"","frontend_count":0,"id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","instances":[{"created_at":"2023-06-29T13:09:44.587190Z","id":"e14718ed-8260-4c49-9eaa-c0cb6cf3a225","ip_address":"10.64.216.131","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:11:02.293722Z","zone":"fr-par-1"}],"ip":[{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","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":"2023-06-29T13:11:03.475351Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T19:46:34.282376Z","description":"","frontend_count":0,"id":"85c3851a-9159-425e-8183-48e0634abf27","instances":[{"created_at":"2023-07-03T19:44:25.767021Z","id":"dd53c7f1-2bf4-482b-84ed-b73c46afe6c0","ip_address":"10.64.120.35","region":"fr-par","status":"ready","updated_at":"2023-07-03T19:46:35.702854Z","zone":"fr-par-1"}],"ip":[{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":"85c3851a-9159-425e-8183-48e0634abf27","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","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":"2023-07-03T19:46:36.887199Z","zone":"fr-par-1"}' headers: Content-Length: - - "1089" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:31 GMT + - Mon, 03 Jul 2023 19:47:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -335,12 +335,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05338a86-0b62-4455-8e7d-8bc9cef4143c + - b419b3ea-0952-490d-a210-6695e1eecb9b status: 200 OK code: 200 duration: "" - request: - body: '{"name":"bkd01","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":null,"check_delay":60000,"check_timeout":30000},"server_ip":["51.15.207.142"],"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":null,"max_retries":3,"max_connections":null,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' + body: '{"name":"bkd01","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":["163.172.171.183"],"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":null,"max_retries":3,"max_connections":null,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' form: {} headers: Content-Type: @@ -348,19 +348,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d6c30ca1-bb28-4aaf-969a-11908bcdf353/backends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/85c3851a-9159-425e-8183-48e0634abf27/backends method: POST response: - body: '{"created_at":"2023-06-29T13:11:31.519882938Z","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":null},"id":"d1b4c21e-3de7-40ae-a76a-a63b730f0049","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:11:00.872051Z","description":"","frontend_count":0,"id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","instances":[{"created_at":"2023-06-29T13:09:44.587190Z","id":"e14718ed-8260-4c49-9eaa-c0cb6cf3a225","ip_address":"10.64.216.131","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:11:31.551284843Z","zone":"fr-par-1"}],"ip":[{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","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":"2023-06-29T13:11:03.475351Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["51.15.207.142"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:11:31.519882938Z"}' + body: '{"created_at":"2023-07-03T19:47:04.934398944Z","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":"ecdc04ef-720b-471b-9f1f-5ee01e94d50d","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T19:46:34.282376Z","description":"","frontend_count":0,"id":"85c3851a-9159-425e-8183-48e0634abf27","instances":[{"created_at":"2023-07-03T19:44:25.767021Z","id":"dd53c7f1-2bf4-482b-84ed-b73c46afe6c0","ip_address":"10.64.120.35","region":"fr-par","status":"pending","updated_at":"2023-07-03T19:47:04.961839521Z","zone":"fr-par-1"}],"ip":[{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":"85c3851a-9159-425e-8183-48e0634abf27","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","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":"2023-07-03T19:46:36.887199Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["163.172.171.183"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T19:47:04.934398944Z"}' headers: Content-Length: - - "1959" + - "1906" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:31 GMT + - Mon, 03 Jul 2023 19:47:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -370,7 +370,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e690807-370e-4790-8ea7-a2e58625bc9d + - 474bb840-b9a2-4425-b7a8-7b636b2afd2b status: 200 OK code: 200 duration: "" @@ -381,19 +381,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d6c30ca1-bb28-4aaf-969a-11908bcdf353 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/85c3851a-9159-425e-8183-48e0634abf27 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:11:00.872051Z","description":"","frontend_count":0,"id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","instances":[{"created_at":"2023-06-29T13:09:44.587190Z","id":"e14718ed-8260-4c49-9eaa-c0cb6cf3a225","ip_address":"10.64.216.131","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:11:31.551285Z","zone":"fr-par-1"}],"ip":[{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","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":"2023-06-29T13:11:03.475351Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T19:46:34.282376Z","description":"","frontend_count":0,"id":"85c3851a-9159-425e-8183-48e0634abf27","instances":[{"created_at":"2023-07-03T19:44:25.767021Z","id":"dd53c7f1-2bf4-482b-84ed-b73c46afe6c0","ip_address":"10.64.120.35","region":"fr-par","status":"pending","updated_at":"2023-07-03T19:47:04.961840Z","zone":"fr-par-1"}],"ip":[{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":"85c3851a-9159-425e-8183-48e0634abf27","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","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":"2023-07-03T19:46:36.887199Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1062" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:31 GMT + - Mon, 03 Jul 2023 19:47:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -403,7 +403,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ba5acd7-0222-42f5-8629-8922330916dc + - 7fcb215c-ce29-4403-9c34-3092d041021e status: 200 OK code: 200 duration: "" @@ -414,19 +414,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/d1b4c21e-3de7-40ae-a76a-a63b730f0049 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/ecdc04ef-720b-471b-9f1f-5ee01e94d50d method: GET response: - body: '{"created_at":"2023-06-29T13:11:31.519883Z","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":null},"id":"d1b4c21e-3de7-40ae-a76a-a63b730f0049","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:11:00.872051Z","description":"","frontend_count":0,"id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","instances":[{"created_at":"2023-06-29T13:09:44.587190Z","id":"e14718ed-8260-4c49-9eaa-c0cb6cf3a225","ip_address":"10.64.216.131","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:11:31.551285Z","zone":"fr-par-1"}],"ip":[{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","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":"2023-06-29T13:11:03.475351Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["51.15.207.142"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:11:31.519883Z"}' + body: '{"created_at":"2023-07-03T19:47:04.934399Z","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":"ecdc04ef-720b-471b-9f1f-5ee01e94d50d","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T19:46:34.282376Z","description":"","frontend_count":0,"id":"85c3851a-9159-425e-8183-48e0634abf27","instances":[{"created_at":"2023-07-03T19:44:25.767021Z","id":"dd53c7f1-2bf4-482b-84ed-b73c46afe6c0","ip_address":"10.64.120.35","region":"fr-par","status":"ready","updated_at":"2023-07-03T19:47:05.231445Z","zone":"fr-par-1"}],"ip":[{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":"85c3851a-9159-425e-8183-48e0634abf27","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","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":"2023-07-03T19:46:36.887199Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["163.172.171.183"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T19:47:04.934399Z"}' headers: Content-Length: - - "1950" + - "1895" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:31 GMT + - Mon, 03 Jul 2023 19:47:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -436,7 +436,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37715d29-19df-4565-944a-e6ee4647bb12 + - 180c8165-09be-4902-a59d-7f9c56965e9c status: 200 OK code: 200 duration: "" @@ -447,19 +447,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d6c30ca1-bb28-4aaf-969a-11908bcdf353 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/85c3851a-9159-425e-8183-48e0634abf27 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:11:00.872051Z","description":"","frontend_count":0,"id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","instances":[{"created_at":"2023-06-29T13:09:44.587190Z","id":"e14718ed-8260-4c49-9eaa-c0cb6cf3a225","ip_address":"10.64.216.131","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:11:31.818069Z","zone":"fr-par-1"}],"ip":[{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","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":"2023-06-29T13:11:03.475351Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T19:46:34.282376Z","description":"","frontend_count":0,"id":"85c3851a-9159-425e-8183-48e0634abf27","instances":[{"created_at":"2023-07-03T19:44:25.767021Z","id":"dd53c7f1-2bf4-482b-84ed-b73c46afe6c0","ip_address":"10.64.120.35","region":"fr-par","status":"ready","updated_at":"2023-07-03T19:47:05.231445Z","zone":"fr-par-1"}],"ip":[{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":"85c3851a-9159-425e-8183-48e0634abf27","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","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":"2023-07-03T19:46:36.887199Z","zone":"fr-par-1"}' headers: Content-Length: - - "1089" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:31 GMT + - Mon, 03 Jul 2023 19:47:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -469,7 +469,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d4ff9f2-363e-4dbd-bd6b-d31680e5df5c + - e057d75a-fbc4-4d89-ae77-a3bcf49e067e status: 200 OK code: 200 duration: "" @@ -480,19 +480,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/d1b4c21e-3de7-40ae-a76a-a63b730f0049 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/ecdc04ef-720b-471b-9f1f-5ee01e94d50d method: GET response: - body: '{"created_at":"2023-06-29T13:11:31.519883Z","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":null},"id":"d1b4c21e-3de7-40ae-a76a-a63b730f0049","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:11:00.872051Z","description":"","frontend_count":0,"id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","instances":[{"created_at":"2023-06-29T13:09:44.587190Z","id":"e14718ed-8260-4c49-9eaa-c0cb6cf3a225","ip_address":"10.64.216.131","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:11:31.818069Z","zone":"fr-par-1"}],"ip":[{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","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":"2023-06-29T13:11:03.475351Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["51.15.207.142"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:11:31.519883Z"}' + body: '{"created_at":"2023-07-03T19:47:04.934399Z","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":"ecdc04ef-720b-471b-9f1f-5ee01e94d50d","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T19:46:34.282376Z","description":"","frontend_count":0,"id":"85c3851a-9159-425e-8183-48e0634abf27","instances":[{"created_at":"2023-07-03T19:44:25.767021Z","id":"dd53c7f1-2bf4-482b-84ed-b73c46afe6c0","ip_address":"10.64.120.35","region":"fr-par","status":"ready","updated_at":"2023-07-03T19:47:05.231445Z","zone":"fr-par-1"}],"ip":[{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":"85c3851a-9159-425e-8183-48e0634abf27","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","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":"2023-07-03T19:46:36.887199Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["163.172.171.183"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T19:47:04.934399Z"}' headers: Content-Length: - - "1948" + - "1895" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:32 GMT + - Mon, 03 Jul 2023 19:47:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -502,7 +502,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 382a855a-f0f9-454d-9b52-a86012c27d8b + - 8e131706-b09e-4164-968d-442d85ae5739 status: 200 OK code: 200 duration: "" @@ -513,19 +513,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c72d33d7-6925-4ac2-8498-c249d2e8d4ee + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66 method: GET response: - body: '{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":"85c3851a-9159-425e-8183-48e0634abf27","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "315" + - "312" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:32 GMT + - Mon, 03 Jul 2023 19:47:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -535,7 +535,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e4c9e9b-151b-43c3-9424-d2f78791f3e2 + - 6738cd0f-3d79-47be-86a8-411cacab006a status: 200 OK code: 200 duration: "" @@ -546,19 +546,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2d7bc003-aa3c-4a47-9694-36a765cc1cdf + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/48ffe756-9aac-4b45-93c8-ea56d9fe8304 method: GET response: - body: '{"ip":{"address":"51.15.207.142","id":"2d7bc003-aa3c-4a47-9694-36a765cc1cdf","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","prefix":null,"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null,"server":null,"state":"attached","tags":[],"type":"nat","zone":"fr-par-1"}}' + body: '{"ip":{"address":"163.172.171.183","id":"48ffe756-9aac-4b45-93c8-ea56d9fe8304","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","prefix":null,"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null,"server":null,"state":"attached","tags":[],"type":"nat","zone":"fr-par-1"}}' headers: Content-Length: - - "306" + - "308" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:32 GMT + - Mon, 03 Jul 2023 19:47:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -568,7 +568,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca83ae4a-c25c-4972-b77b-f14212d80bf8 + - a4af243b-c489-40a5-b0dc-b1f13afbb962 status: 200 OK code: 200 duration: "" @@ -579,19 +579,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d6c30ca1-bb28-4aaf-969a-11908bcdf353 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/85c3851a-9159-425e-8183-48e0634abf27 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:11:00.872051Z","description":"","frontend_count":0,"id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","instances":[{"created_at":"2023-06-29T13:09:44.587190Z","id":"e14718ed-8260-4c49-9eaa-c0cb6cf3a225","ip_address":"10.64.216.131","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:11:31.818069Z","zone":"fr-par-1"}],"ip":[{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","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":"2023-06-29T13:11:03.475351Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T19:46:34.282376Z","description":"","frontend_count":0,"id":"85c3851a-9159-425e-8183-48e0634abf27","instances":[{"created_at":"2023-07-03T19:44:25.767021Z","id":"dd53c7f1-2bf4-482b-84ed-b73c46afe6c0","ip_address":"10.64.120.35","region":"fr-par","status":"ready","updated_at":"2023-07-03T19:47:05.231445Z","zone":"fr-par-1"}],"ip":[{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":"85c3851a-9159-425e-8183-48e0634abf27","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","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":"2023-07-03T19:46:36.887199Z","zone":"fr-par-1"}' headers: Content-Length: - - "1089" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:32 GMT + - Mon, 03 Jul 2023 19:47:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -601,7 +601,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b3f8ea67-1dfd-44f1-825f-f131aa28a89f + - eb7b11a1-be36-446f-a191-b6dc793f9f6d status: 200 OK code: 200 duration: "" @@ -612,19 +612,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d6c30ca1-bb28-4aaf-969a-11908bcdf353 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/85c3851a-9159-425e-8183-48e0634abf27 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:11:00.872051Z","description":"","frontend_count":0,"id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","instances":[{"created_at":"2023-06-29T13:09:44.587190Z","id":"e14718ed-8260-4c49-9eaa-c0cb6cf3a225","ip_address":"10.64.216.131","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:11:31.818069Z","zone":"fr-par-1"}],"ip":[{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","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":"2023-06-29T13:11:03.475351Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T19:46:34.282376Z","description":"","frontend_count":0,"id":"85c3851a-9159-425e-8183-48e0634abf27","instances":[{"created_at":"2023-07-03T19:44:25.767021Z","id":"dd53c7f1-2bf4-482b-84ed-b73c46afe6c0","ip_address":"10.64.120.35","region":"fr-par","status":"ready","updated_at":"2023-07-03T19:47:05.231445Z","zone":"fr-par-1"}],"ip":[{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":"85c3851a-9159-425e-8183-48e0634abf27","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","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":"2023-07-03T19:46:36.887199Z","zone":"fr-par-1"}' headers: Content-Length: - - "1089" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:32 GMT + - Mon, 03 Jul 2023 19:47:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -634,7 +634,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df6adb8e-b181-4451-8775-298f256f44dc + - 54377ac8-21a6-4171-b988-1f073a6e1327 status: 200 OK code: 200 duration: "" @@ -645,19 +645,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d6c30ca1-bb28-4aaf-969a-11908bcdf353/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/85c3851a-9159-425e-8183-48e0634abf27/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:32 GMT + - Mon, 03 Jul 2023 19:47:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -667,7 +667,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d0d3002d-fb0e-444d-bc26-65f3f59abf0f + - aa48270a-f31f-4abb-ae4d-69f001810c2a status: 200 OK code: 200 duration: "" @@ -678,19 +678,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/d1b4c21e-3de7-40ae-a76a-a63b730f0049 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/ecdc04ef-720b-471b-9f1f-5ee01e94d50d method: GET response: - body: '{"created_at":"2023-06-29T13:11:31.519883Z","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":null},"id":"d1b4c21e-3de7-40ae-a76a-a63b730f0049","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:11:00.872051Z","description":"","frontend_count":0,"id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","instances":[{"created_at":"2023-06-29T13:09:44.587190Z","id":"e14718ed-8260-4c49-9eaa-c0cb6cf3a225","ip_address":"10.64.216.131","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:11:31.818069Z","zone":"fr-par-1"}],"ip":[{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","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":"2023-06-29T13:11:03.475351Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["51.15.207.142"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:11:31.519883Z"}' + body: '{"created_at":"2023-07-03T19:47:04.934399Z","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":"ecdc04ef-720b-471b-9f1f-5ee01e94d50d","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T19:46:34.282376Z","description":"","frontend_count":0,"id":"85c3851a-9159-425e-8183-48e0634abf27","instances":[{"created_at":"2023-07-03T19:44:25.767021Z","id":"dd53c7f1-2bf4-482b-84ed-b73c46afe6c0","ip_address":"10.64.120.35","region":"fr-par","status":"ready","updated_at":"2023-07-03T19:47:05.231445Z","zone":"fr-par-1"}],"ip":[{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":"85c3851a-9159-425e-8183-48e0634abf27","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","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":"2023-07-03T19:46:36.887199Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["163.172.171.183"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T19:47:04.934399Z"}' headers: Content-Length: - - "1948" + - "1895" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:32 GMT + - Mon, 03 Jul 2023 19:47:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -700,7 +700,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2e466bc-a396-43fd-95e7-6e4813bf5f1a + - ebae709c-fd53-444f-b8f2-0bf3cc176dbc status: 200 OK code: 200 duration: "" @@ -711,19 +711,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d6c30ca1-bb28-4aaf-969a-11908bcdf353 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/85c3851a-9159-425e-8183-48e0634abf27 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:11:00.872051Z","description":"","frontend_count":0,"id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","instances":[{"created_at":"2023-06-29T13:09:44.587190Z","id":"e14718ed-8260-4c49-9eaa-c0cb6cf3a225","ip_address":"10.64.216.131","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:11:31.818069Z","zone":"fr-par-1"}],"ip":[{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","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":"2023-06-29T13:11:03.475351Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T19:46:34.282376Z","description":"","frontend_count":0,"id":"85c3851a-9159-425e-8183-48e0634abf27","instances":[{"created_at":"2023-07-03T19:44:25.767021Z","id":"dd53c7f1-2bf4-482b-84ed-b73c46afe6c0","ip_address":"10.64.120.35","region":"fr-par","status":"ready","updated_at":"2023-07-03T19:47:05.231445Z","zone":"fr-par-1"}],"ip":[{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":"85c3851a-9159-425e-8183-48e0634abf27","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","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":"2023-07-03T19:46:36.887199Z","zone":"fr-par-1"}' headers: Content-Length: - - "1089" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:32 GMT + - Mon, 03 Jul 2023 19:47:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -733,7 +733,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5af33f1c-0b0c-4b78-b783-a8ad928aa56e + - 1bab9f58-9bd6-4641-8286-52c29dd56ef7 status: 200 OK code: 200 duration: "" @@ -744,19 +744,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c72d33d7-6925-4ac2-8498-c249d2e8d4ee + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66 method: GET response: - body: '{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":"85c3851a-9159-425e-8183-48e0634abf27","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "315" + - "312" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:33 GMT + - Mon, 03 Jul 2023 19:47:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -766,7 +766,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c27c8148-6370-44ed-9692-ebcc755e819f + - 91ec49c6-a782-45b4-aac4-84a0e459b37e status: 200 OK code: 200 duration: "" @@ -777,19 +777,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2d7bc003-aa3c-4a47-9694-36a765cc1cdf + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/48ffe756-9aac-4b45-93c8-ea56d9fe8304 method: GET response: - body: '{"ip":{"address":"51.15.207.142","id":"2d7bc003-aa3c-4a47-9694-36a765cc1cdf","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","prefix":null,"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null,"server":null,"state":"attached","tags":[],"type":"nat","zone":"fr-par-1"}}' + body: '{"ip":{"address":"163.172.171.183","id":"48ffe756-9aac-4b45-93c8-ea56d9fe8304","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","prefix":null,"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null,"server":null,"state":"attached","tags":[],"type":"nat","zone":"fr-par-1"}}' headers: Content-Length: - - "306" + - "308" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:33 GMT + - Mon, 03 Jul 2023 19:47:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -799,7 +799,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d5d86c45-2aab-4404-81d1-738e7da5ea6c + - c274f2df-91c8-4417-9f26-0cb91cf15e79 status: 200 OK code: 200 duration: "" @@ -810,19 +810,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d6c30ca1-bb28-4aaf-969a-11908bcdf353 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/85c3851a-9159-425e-8183-48e0634abf27 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:11:00.872051Z","description":"","frontend_count":0,"id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","instances":[{"created_at":"2023-06-29T13:09:44.587190Z","id":"e14718ed-8260-4c49-9eaa-c0cb6cf3a225","ip_address":"10.64.216.131","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:11:31.818069Z","zone":"fr-par-1"}],"ip":[{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","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":"2023-06-29T13:11:03.475351Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T19:46:34.282376Z","description":"","frontend_count":0,"id":"85c3851a-9159-425e-8183-48e0634abf27","instances":[{"created_at":"2023-07-03T19:44:25.767021Z","id":"dd53c7f1-2bf4-482b-84ed-b73c46afe6c0","ip_address":"10.64.120.35","region":"fr-par","status":"ready","updated_at":"2023-07-03T19:47:05.231445Z","zone":"fr-par-1"}],"ip":[{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":"85c3851a-9159-425e-8183-48e0634abf27","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","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":"2023-07-03T19:46:36.887199Z","zone":"fr-par-1"}' headers: Content-Length: - - "1089" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:33 GMT + - Mon, 03 Jul 2023 19:47:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -832,7 +832,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5537462-36d1-4901-a120-2d22a65f2e17 + - a1b0edd8-f43d-42a4-ae69-2671863e5f28 status: 200 OK code: 200 duration: "" @@ -843,19 +843,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d6c30ca1-bb28-4aaf-969a-11908bcdf353 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/85c3851a-9159-425e-8183-48e0634abf27 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:11:00.872051Z","description":"","frontend_count":0,"id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","instances":[{"created_at":"2023-06-29T13:09:44.587190Z","id":"e14718ed-8260-4c49-9eaa-c0cb6cf3a225","ip_address":"10.64.216.131","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:11:31.818069Z","zone":"fr-par-1"}],"ip":[{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","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":"2023-06-29T13:11:03.475351Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T19:46:34.282376Z","description":"","frontend_count":0,"id":"85c3851a-9159-425e-8183-48e0634abf27","instances":[{"created_at":"2023-07-03T19:44:25.767021Z","id":"dd53c7f1-2bf4-482b-84ed-b73c46afe6c0","ip_address":"10.64.120.35","region":"fr-par","status":"ready","updated_at":"2023-07-03T19:47:05.231445Z","zone":"fr-par-1"}],"ip":[{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":"85c3851a-9159-425e-8183-48e0634abf27","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","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":"2023-07-03T19:46:36.887199Z","zone":"fr-par-1"}' headers: Content-Length: - - "1089" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:33 GMT + - Mon, 03 Jul 2023 19:47:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -865,7 +865,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2cf733d2-3769-45d0-967a-24e25b179911 + - cb644ae6-4d77-4805-8bb3-bee36ca2fbcf status: 200 OK code: 200 duration: "" @@ -876,19 +876,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d6c30ca1-bb28-4aaf-969a-11908bcdf353/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/85c3851a-9159-425e-8183-48e0634abf27/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:33 GMT + - Mon, 03 Jul 2023 19:47:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -898,7 +898,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5675f7c0-aec1-4dda-8453-f32d66c84e3f + - 3e2df12d-2e6c-4479-8ca5-407bc3530b37 status: 200 OK code: 200 duration: "" @@ -909,19 +909,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/d1b4c21e-3de7-40ae-a76a-a63b730f0049 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/ecdc04ef-720b-471b-9f1f-5ee01e94d50d method: GET response: - body: '{"created_at":"2023-06-29T13:11:31.519883Z","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":null},"id":"d1b4c21e-3de7-40ae-a76a-a63b730f0049","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:11:00.872051Z","description":"","frontend_count":0,"id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","instances":[{"created_at":"2023-06-29T13:09:44.587190Z","id":"e14718ed-8260-4c49-9eaa-c0cb6cf3a225","ip_address":"10.64.216.131","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:11:31.818069Z","zone":"fr-par-1"}],"ip":[{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","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":"2023-06-29T13:11:03.475351Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["51.15.207.142"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:11:31.519883Z"}' + body: '{"created_at":"2023-07-03T19:47:04.934399Z","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":"ecdc04ef-720b-471b-9f1f-5ee01e94d50d","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T19:46:34.282376Z","description":"","frontend_count":0,"id":"85c3851a-9159-425e-8183-48e0634abf27","instances":[{"created_at":"2023-07-03T19:44:25.767021Z","id":"dd53c7f1-2bf4-482b-84ed-b73c46afe6c0","ip_address":"10.64.120.35","region":"fr-par","status":"ready","updated_at":"2023-07-03T19:47:05.231445Z","zone":"fr-par-1"}],"ip":[{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":"85c3851a-9159-425e-8183-48e0634abf27","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","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":"2023-07-03T19:46:36.887199Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["163.172.171.183"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T19:47:04.934399Z"}' headers: Content-Length: - - "1948" + - "1895" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:33 GMT + - Mon, 03 Jul 2023 19:47:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -931,7 +931,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - edf0fa6a-c61b-4cf5-8dea-87ed97443daf + - b01622dc-e3c1-47c1-8020-ed914b36d746 status: 200 OK code: 200 duration: "" @@ -942,19 +942,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d6c30ca1-bb28-4aaf-969a-11908bcdf353 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/85c3851a-9159-425e-8183-48e0634abf27 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:11:00.872051Z","description":"","frontend_count":0,"id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","instances":[{"created_at":"2023-06-29T13:09:44.587190Z","id":"e14718ed-8260-4c49-9eaa-c0cb6cf3a225","ip_address":"10.64.216.131","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:11:31.818069Z","zone":"fr-par-1"}],"ip":[{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","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":"2023-06-29T13:11:03.475351Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T19:46:34.282376Z","description":"","frontend_count":0,"id":"85c3851a-9159-425e-8183-48e0634abf27","instances":[{"created_at":"2023-07-03T19:44:25.767021Z","id":"dd53c7f1-2bf4-482b-84ed-b73c46afe6c0","ip_address":"10.64.120.35","region":"fr-par","status":"ready","updated_at":"2023-07-03T19:47:05.231445Z","zone":"fr-par-1"}],"ip":[{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":"85c3851a-9159-425e-8183-48e0634abf27","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","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":"2023-07-03T19:46:36.887199Z","zone":"fr-par-1"}' headers: Content-Length: - - "1089" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:33 GMT + - Mon, 03 Jul 2023 19:47:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -964,7 +964,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9d16df4-a54a-4172-8c77-dff01208a3b1 + - 140a3572-20d7-4526-ba47-4cb53de7ee6f status: 200 OK code: 200 duration: "" @@ -980,18 +980,18 @@ interactions: url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip":{"address":"163.172.168.201","id":"607f9310-4c85-4152-a2a6-f0c6272b012d","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","prefix":null,"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null,"server":null,"state":"attached","tags":[],"type":"nat","zone":"fr-par-1"}}' + body: '{"ip":{"address":"163.172.169.96","id":"237eb35e-a07e-448c-8948-a54824077849","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","prefix":null,"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null,"server":null,"state":"attached","tags":[],"type":"nat","zone":"fr-par-1"}}' headers: Content-Length: - - "308" + - "307" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:34 GMT + - Mon, 03 Jul 2023 19:47:08 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/607f9310-4c85-4152-a2a6-f0c6272b012d + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/237eb35e-a07e-448c-8948-a54824077849 Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1001,7 +1001,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab8e6bd2-a519-4aab-91cd-7d53412a4cc9 + - 188a6ceb-393c-4d1f-9159-ea405d20d655 status: 201 Created code: 201 duration: "" @@ -1012,19 +1012,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/607f9310-4c85-4152-a2a6-f0c6272b012d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/237eb35e-a07e-448c-8948-a54824077849 method: GET response: - body: '{"ip":{"address":"163.172.168.201","id":"607f9310-4c85-4152-a2a6-f0c6272b012d","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","prefix":null,"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null,"server":null,"state":"attached","tags":[],"type":"nat","zone":"fr-par-1"}}' + body: '{"ip":{"address":"163.172.169.96","id":"237eb35e-a07e-448c-8948-a54824077849","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","prefix":null,"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null,"server":null,"state":"attached","tags":[],"type":"nat","zone":"fr-par-1"}}' headers: Content-Length: - - "308" + - "307" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:34 GMT + - Mon, 03 Jul 2023 19:47:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1034,7 +1034,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb54ea6e-7230-4624-8ae4-18fd7186485f + - c0c53e7e-1d16-4eb4-88f3-63feb4361f29 status: 200 OK code: 200 duration: "" @@ -1045,19 +1045,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d6c30ca1-bb28-4aaf-969a-11908bcdf353 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/85c3851a-9159-425e-8183-48e0634abf27 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:11:00.872051Z","description":"","frontend_count":0,"id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","instances":[{"created_at":"2023-06-29T13:09:44.587190Z","id":"e14718ed-8260-4c49-9eaa-c0cb6cf3a225","ip_address":"10.64.216.131","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:11:31.818069Z","zone":"fr-par-1"}],"ip":[{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","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":"2023-06-29T13:11:03.475351Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T19:46:34.282376Z","description":"","frontend_count":0,"id":"85c3851a-9159-425e-8183-48e0634abf27","instances":[{"created_at":"2023-07-03T19:44:25.767021Z","id":"dd53c7f1-2bf4-482b-84ed-b73c46afe6c0","ip_address":"10.64.120.35","region":"fr-par","status":"ready","updated_at":"2023-07-03T19:47:05.231445Z","zone":"fr-par-1"}],"ip":[{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":"85c3851a-9159-425e-8183-48e0634abf27","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","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":"2023-07-03T19:46:36.887199Z","zone":"fr-par-1"}' headers: Content-Length: - - "1089" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:34 GMT + - Mon, 03 Jul 2023 19:47:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1067,7 +1067,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - baa169d1-ef53-4153-b5c6-f1a612cf76de + - aec1d9b3-3e37-4806-9ac0-b709b83645f3 status: 200 OK code: 200 duration: "" @@ -1080,19 +1080,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/d1b4c21e-3de7-40ae-a76a-a63b730f0049 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/ecdc04ef-720b-471b-9f1f-5ee01e94d50d method: PUT response: - body: '{"created_at":"2023-06-29T13:11:31.519883Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"leastconn","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":null},"id":"d1b4c21e-3de7-40ae-a76a-a63b730f0049","ignore_ssl_server_verify":true,"lb":{"backend_count":1,"created_at":"2023-06-29T13:11:00.872051Z","description":"","frontend_count":0,"id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","instances":[{"created_at":"2023-06-29T13:09:44.587190Z","id":"e14718ed-8260-4c49-9eaa-c0cb6cf3a225","ip_address":"10.64.216.131","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:11:31.818069Z","zone":"fr-par-1"}],"ip":[{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","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":"2023-06-29T13:11:03.475351Z","zone":"fr-par-1"},"max_connections":42,"max_retries":6,"name":"bkd01","on_marked_down_action":"shutdown_sessions","pool":["51.15.207.142"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":1,"send_proxy_v2":false,"ssl_bridging":true,"sticky_sessions":"cookie","sticky_sessions_cookie_name":"session-id","timeout_connect":2500,"timeout_queue":"4s","timeout_server":1000,"timeout_tunnel":3000,"updated_at":"2023-06-29T13:11:34.733615468Z"}' + body: '{"created_at":"2023-07-03T19:47:04.934399Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"leastconn","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":"ecdc04ef-720b-471b-9f1f-5ee01e94d50d","ignore_ssl_server_verify":true,"lb":{"backend_count":1,"created_at":"2023-07-03T19:46:34.282376Z","description":"","frontend_count":0,"id":"85c3851a-9159-425e-8183-48e0634abf27","instances":[{"created_at":"2023-07-03T19:44:25.767021Z","id":"dd53c7f1-2bf4-482b-84ed-b73c46afe6c0","ip_address":"10.64.120.35","region":"fr-par","status":"ready","updated_at":"2023-07-03T19:47:05.231445Z","zone":"fr-par-1"}],"ip":[{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":"85c3851a-9159-425e-8183-48e0634abf27","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","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":"2023-07-03T19:46:36.887199Z","zone":"fr-par-1"},"max_connections":42,"max_retries":6,"name":"bkd01","on_marked_down_action":"shutdown_sessions","pool":["163.172.171.183"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":1,"send_proxy_v2":false,"ssl_bridging":true,"sticky_sessions":"cookie","sticky_sessions_cookie_name":"session-id","timeout_connect":2500,"timeout_queue":"4s","timeout_server":1000,"timeout_tunnel":3000,"updated_at":"2023-07-03T19:47:08.295646183Z"}' headers: Content-Length: - - "1942" + - "1889" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:34 GMT + - Mon, 03 Jul 2023 19:47:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1102,12 +1102,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9b8ee6b-c896-43fa-9ad8-5fec4e4ea6e3 + - 8c77c043-a6fe-4e39-beff-ce920bafb1b3 status: 200 OK code: 200 duration: "" - request: - body: '{"port":81,"check_max_retries":3,"check_send_proxy":false,"tcp_config":{},"transient_check_delay":null,"check_delay":10000,"check_timeout":15000}' + body: '{"port":81,"check_max_retries":3,"check_send_proxy":false,"tcp_config":{},"transient_check_delay":"0.200000000s","check_delay":10000,"check_timeout":15000}' form: {} headers: Content-Type: @@ -1115,19 +1115,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/d1b4c21e-3de7-40ae-a76a-a63b730f0049/healthcheck + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/ecdc04ef-720b-471b-9f1f-5ee01e94d50d/healthcheck method: PUT response: - body: '{"check_delay":10000,"check_max_retries":3,"check_send_proxy":false,"check_timeout":15000,"port":81,"tcp_config":{},"transient_check_delay":null}' + body: '{"check_delay":10000,"check_max_retries":3,"check_send_proxy":false,"check_timeout":15000,"port":81,"tcp_config":{},"transient_check_delay":"0.200s"}' headers: Content-Length: - - "151" + - "149" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:35 GMT + - Mon, 03 Jul 2023 19:47:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1137,12 +1137,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1153bc30-ea7c-41bb-9643-b92e9da21387 + - 03fab73d-74dd-40ad-9c89-91831e475bd7 status: 200 OK code: 200 duration: "" - request: - body: '{"server_ip":["51.15.207.142","163.172.168.201"]}' + body: '{"server_ip":["163.172.171.183","163.172.169.96"]}' form: {} headers: Content-Type: @@ -1150,19 +1150,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/d1b4c21e-3de7-40ae-a76a-a63b730f0049/servers + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/ecdc04ef-720b-471b-9f1f-5ee01e94d50d/servers method: PUT response: - body: '{"created_at":"2023-06-29T13:11:31.519883Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"leastconn","forward_protocol":"tcp","health_check":{"check_delay":10000,"check_max_retries":3,"check_send_proxy":false,"check_timeout":15000,"port":81,"tcp_config":{},"transient_check_delay":null},"id":"d1b4c21e-3de7-40ae-a76a-a63b730f0049","ignore_ssl_server_verify":true,"lb":{"backend_count":1,"created_at":"2023-06-29T13:11:00.872051Z","description":"","frontend_count":0,"id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","instances":[{"created_at":"2023-06-29T13:09:44.587190Z","id":"e14718ed-8260-4c49-9eaa-c0cb6cf3a225","ip_address":"10.64.216.131","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:11:35.220475016Z","zone":"fr-par-1"}],"ip":[{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","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":"2023-06-29T13:11:03.475351Z","zone":"fr-par-1"},"max_connections":42,"max_retries":6,"name":"bkd01","on_marked_down_action":"shutdown_sessions","pool":["51.15.207.142","163.172.168.201"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":1,"send_proxy_v2":false,"ssl_bridging":true,"sticky_sessions":"cookie","sticky_sessions_cookie_name":"session-id","timeout_connect":2500,"timeout_queue":"4s","timeout_server":1000,"timeout_tunnel":3000,"updated_at":"2023-06-29T13:11:35.181998570Z"}' + body: '{"created_at":"2023-07-03T19:47:04.934399Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"leastconn","forward_protocol":"tcp","health_check":{"check_delay":10000,"check_max_retries":3,"check_send_proxy":false,"check_timeout":15000,"port":81,"tcp_config":{},"transient_check_delay":"0.200s"},"id":"ecdc04ef-720b-471b-9f1f-5ee01e94d50d","ignore_ssl_server_verify":true,"lb":{"backend_count":1,"created_at":"2023-07-03T19:46:34.282376Z","description":"","frontend_count":0,"id":"85c3851a-9159-425e-8183-48e0634abf27","instances":[{"created_at":"2023-07-03T19:44:25.767021Z","id":"dd53c7f1-2bf4-482b-84ed-b73c46afe6c0","ip_address":"10.64.120.35","region":"fr-par","status":"pending","updated_at":"2023-07-03T19:47:08.836979222Z","zone":"fr-par-1"}],"ip":[{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":"85c3851a-9159-425e-8183-48e0634abf27","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","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":"2023-07-03T19:46:36.887199Z","zone":"fr-par-1"},"max_connections":42,"max_retries":6,"name":"bkd01","on_marked_down_action":"shutdown_sessions","pool":["163.172.171.183","163.172.169.96"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":1,"send_proxy_v2":false,"ssl_bridging":true,"sticky_sessions":"cookie","sticky_sessions_cookie_name":"session-id","timeout_connect":2500,"timeout_queue":"4s","timeout_server":1000,"timeout_tunnel":3000,"updated_at":"2023-07-03T19:47:08.807220516Z"}' headers: Content-Length: - - "1966" + - "1911" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:35 GMT + - Mon, 03 Jul 2023 19:47:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1172,7 +1172,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d65ebb12-c6a5-44c1-ba89-9c4f682f3de0 + - e3a20525-613a-4cc7-ae63-420602202a98 status: 200 OK code: 200 duration: "" @@ -1183,19 +1183,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d6c30ca1-bb28-4aaf-969a-11908bcdf353 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/85c3851a-9159-425e-8183-48e0634abf27 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:11:00.872051Z","description":"","frontend_count":0,"id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","instances":[{"created_at":"2023-06-29T13:09:44.587190Z","id":"e14718ed-8260-4c49-9eaa-c0cb6cf3a225","ip_address":"10.64.216.131","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:11:35.271236Z","zone":"fr-par-1"}],"ip":[{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","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":"2023-06-29T13:11:03.475351Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T19:46:34.282376Z","description":"","frontend_count":0,"id":"85c3851a-9159-425e-8183-48e0634abf27","instances":[{"created_at":"2023-07-03T19:44:25.767021Z","id":"dd53c7f1-2bf4-482b-84ed-b73c46afe6c0","ip_address":"10.64.120.35","region":"fr-par","status":"pending","updated_at":"2023-07-03T19:47:08.836979Z","zone":"fr-par-1"}],"ip":[{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":"85c3851a-9159-425e-8183-48e0634abf27","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","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":"2023-07-03T19:46:36.887199Z","zone":"fr-par-1"}' headers: Content-Length: - - "1089" + - "1062" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:35 GMT + - Mon, 03 Jul 2023 19:47:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1205,7 +1205,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 58115398-f4f7-4901-bb2a-8272da675e1d + - 7fde9f68-f438-424f-995f-84ed679f9555 status: 200 OK code: 200 duration: "" @@ -1216,19 +1216,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/d1b4c21e-3de7-40ae-a76a-a63b730f0049 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/ecdc04ef-720b-471b-9f1f-5ee01e94d50d method: GET response: - body: '{"created_at":"2023-06-29T13:11:31.519883Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"leastconn","forward_protocol":"tcp","health_check":{"check_delay":10000,"check_max_retries":3,"check_send_proxy":false,"check_timeout":15000,"port":81,"tcp_config":{},"transient_check_delay":null},"id":"d1b4c21e-3de7-40ae-a76a-a63b730f0049","ignore_ssl_server_verify":true,"lb":{"backend_count":1,"created_at":"2023-06-29T13:11:00.872051Z","description":"","frontend_count":0,"id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","instances":[{"created_at":"2023-06-29T13:09:44.587190Z","id":"e14718ed-8260-4c49-9eaa-c0cb6cf3a225","ip_address":"10.64.216.131","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:11:35.271236Z","zone":"fr-par-1"}],"ip":[{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","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":"2023-06-29T13:11:03.475351Z","zone":"fr-par-1"},"max_connections":42,"max_retries":6,"name":"bkd01","on_marked_down_action":"shutdown_sessions","pool":["51.15.207.142","163.172.168.201"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":1,"send_proxy_v2":false,"ssl_bridging":true,"sticky_sessions":"cookie","sticky_sessions_cookie_name":"session-id","timeout_connect":2500,"timeout_queue":"4s","timeout_server":1000,"timeout_tunnel":3000,"updated_at":"2023-06-29T13:11:35.181999Z"}' + body: '{"created_at":"2023-07-03T19:47:04.934399Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"leastconn","forward_protocol":"tcp","health_check":{"check_delay":10000,"check_max_retries":3,"check_send_proxy":false,"check_timeout":15000,"port":81,"tcp_config":{},"transient_check_delay":"0.200s"},"id":"ecdc04ef-720b-471b-9f1f-5ee01e94d50d","ignore_ssl_server_verify":true,"lb":{"backend_count":1,"created_at":"2023-07-03T19:46:34.282376Z","description":"","frontend_count":0,"id":"85c3851a-9159-425e-8183-48e0634abf27","instances":[{"created_at":"2023-07-03T19:44:25.767021Z","id":"dd53c7f1-2bf4-482b-84ed-b73c46afe6c0","ip_address":"10.64.120.35","region":"fr-par","status":"ready","updated_at":"2023-07-03T19:47:09.114492Z","zone":"fr-par-1"}],"ip":[{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":"85c3851a-9159-425e-8183-48e0634abf27","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","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":"2023-07-03T19:46:36.887199Z","zone":"fr-par-1"},"max_connections":42,"max_retries":6,"name":"bkd01","on_marked_down_action":"shutdown_sessions","pool":["163.172.171.183","163.172.169.96"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":1,"send_proxy_v2":false,"ssl_bridging":true,"sticky_sessions":"cookie","sticky_sessions_cookie_name":"session-id","timeout_connect":2500,"timeout_queue":"4s","timeout_server":1000,"timeout_tunnel":3000,"updated_at":"2023-07-03T19:47:08.807221Z"}' headers: Content-Length: - - "1958" + - "1903" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:35 GMT + - Mon, 03 Jul 2023 19:47:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1238,7 +1238,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e98f9e7-9bff-4fae-abec-76011f7056a2 + - e71b93d8-a3d5-4735-8a65-7a11d5bb6614 status: 200 OK code: 200 duration: "" @@ -1249,19 +1249,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d6c30ca1-bb28-4aaf-969a-11908bcdf353 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/85c3851a-9159-425e-8183-48e0634abf27 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:11:00.872051Z","description":"","frontend_count":0,"id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","instances":[{"created_at":"2023-06-29T13:09:44.587190Z","id":"e14718ed-8260-4c49-9eaa-c0cb6cf3a225","ip_address":"10.64.216.131","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:11:35.479049Z","zone":"fr-par-1"}],"ip":[{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","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":"2023-06-29T13:11:03.475351Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T19:46:34.282376Z","description":"","frontend_count":0,"id":"85c3851a-9159-425e-8183-48e0634abf27","instances":[{"created_at":"2023-07-03T19:44:25.767021Z","id":"dd53c7f1-2bf4-482b-84ed-b73c46afe6c0","ip_address":"10.64.120.35","region":"fr-par","status":"ready","updated_at":"2023-07-03T19:47:09.114492Z","zone":"fr-par-1"}],"ip":[{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":"85c3851a-9159-425e-8183-48e0634abf27","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","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":"2023-07-03T19:46:36.887199Z","zone":"fr-par-1"}' headers: Content-Length: - - "1089" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:35 GMT + - Mon, 03 Jul 2023 19:47:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1271,7 +1271,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15c0bfb3-cc3b-4103-b948-8ae389ac8d25 + - 5bf84f2b-fd95-4f48-bcff-0b2d31ecc545 status: 200 OK code: 200 duration: "" @@ -1282,19 +1282,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/d1b4c21e-3de7-40ae-a76a-a63b730f0049 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/ecdc04ef-720b-471b-9f1f-5ee01e94d50d method: GET response: - body: '{"created_at":"2023-06-29T13:11:31.519883Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"leastconn","forward_protocol":"tcp","health_check":{"check_delay":10000,"check_max_retries":3,"check_send_proxy":false,"check_timeout":15000,"port":81,"tcp_config":{},"transient_check_delay":null},"id":"d1b4c21e-3de7-40ae-a76a-a63b730f0049","ignore_ssl_server_verify":true,"lb":{"backend_count":1,"created_at":"2023-06-29T13:11:00.872051Z","description":"","frontend_count":0,"id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","instances":[{"created_at":"2023-06-29T13:09:44.587190Z","id":"e14718ed-8260-4c49-9eaa-c0cb6cf3a225","ip_address":"10.64.216.131","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:11:35.479049Z","zone":"fr-par-1"}],"ip":[{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","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":"2023-06-29T13:11:03.475351Z","zone":"fr-par-1"},"max_connections":42,"max_retries":6,"name":"bkd01","on_marked_down_action":"shutdown_sessions","pool":["51.15.207.142","163.172.168.201"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":1,"send_proxy_v2":false,"ssl_bridging":true,"sticky_sessions":"cookie","sticky_sessions_cookie_name":"session-id","timeout_connect":2500,"timeout_queue":"4s","timeout_server":1000,"timeout_tunnel":3000,"updated_at":"2023-06-29T13:11:35.181999Z"}' + body: '{"created_at":"2023-07-03T19:47:04.934399Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"leastconn","forward_protocol":"tcp","health_check":{"check_delay":10000,"check_max_retries":3,"check_send_proxy":false,"check_timeout":15000,"port":81,"tcp_config":{},"transient_check_delay":"0.200s"},"id":"ecdc04ef-720b-471b-9f1f-5ee01e94d50d","ignore_ssl_server_verify":true,"lb":{"backend_count":1,"created_at":"2023-07-03T19:46:34.282376Z","description":"","frontend_count":0,"id":"85c3851a-9159-425e-8183-48e0634abf27","instances":[{"created_at":"2023-07-03T19:44:25.767021Z","id":"dd53c7f1-2bf4-482b-84ed-b73c46afe6c0","ip_address":"10.64.120.35","region":"fr-par","status":"ready","updated_at":"2023-07-03T19:47:09.114492Z","zone":"fr-par-1"}],"ip":[{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":"85c3851a-9159-425e-8183-48e0634abf27","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","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":"2023-07-03T19:46:36.887199Z","zone":"fr-par-1"},"max_connections":42,"max_retries":6,"name":"bkd01","on_marked_down_action":"shutdown_sessions","pool":["163.172.171.183","163.172.169.96"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":1,"send_proxy_v2":false,"ssl_bridging":true,"sticky_sessions":"cookie","sticky_sessions_cookie_name":"session-id","timeout_connect":2500,"timeout_queue":"4s","timeout_server":1000,"timeout_tunnel":3000,"updated_at":"2023-07-03T19:47:08.807221Z"}' headers: Content-Length: - - "1958" + - "1903" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:35 GMT + - Mon, 03 Jul 2023 19:47:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1304,7 +1304,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35187bf2-45b2-438b-b0f6-2fb2a2fde5ad + - f9943c90-67c3-49b7-8217-beb3b2eca168 status: 200 OK code: 200 duration: "" @@ -1315,19 +1315,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c72d33d7-6925-4ac2-8498-c249d2e8d4ee + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66 method: GET response: - body: '{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":"85c3851a-9159-425e-8183-48e0634abf27","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "315" + - "312" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:36 GMT + - Mon, 03 Jul 2023 19:47:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1337,7 +1337,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 135eaf1f-40a1-43b3-82f2-838237b11491 + - 34004c0b-56a4-448a-97a1-5ca049f10bf8 status: 200 OK code: 200 duration: "" @@ -1348,19 +1348,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2d7bc003-aa3c-4a47-9694-36a765cc1cdf + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/237eb35e-a07e-448c-8948-a54824077849 method: GET response: - body: '{"ip":{"address":"51.15.207.142","id":"2d7bc003-aa3c-4a47-9694-36a765cc1cdf","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","prefix":null,"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null,"server":null,"state":"attached","tags":[],"type":"nat","zone":"fr-par-1"}}' + body: '{"ip":{"address":"163.172.169.96","id":"237eb35e-a07e-448c-8948-a54824077849","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","prefix":null,"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null,"server":null,"state":"attached","tags":[],"type":"nat","zone":"fr-par-1"}}' headers: Content-Length: - - "306" + - "307" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:36 GMT + - Mon, 03 Jul 2023 19:47:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1370,7 +1370,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf813011-e019-4474-b9a5-59cd694826bc + - 85a77769-f781-4bc7-ace9-cb621a934368 status: 200 OK code: 200 duration: "" @@ -1381,10 +1381,10 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/607f9310-4c85-4152-a2a6-f0c6272b012d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/48ffe756-9aac-4b45-93c8-ea56d9fe8304 method: GET response: - body: '{"ip":{"address":"163.172.168.201","id":"607f9310-4c85-4152-a2a6-f0c6272b012d","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","prefix":null,"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null,"server":null,"state":"attached","tags":[],"type":"nat","zone":"fr-par-1"}}' + body: '{"ip":{"address":"163.172.171.183","id":"48ffe756-9aac-4b45-93c8-ea56d9fe8304","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","prefix":null,"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null,"server":null,"state":"attached","tags":[],"type":"nat","zone":"fr-par-1"}}' headers: Content-Length: - "308" @@ -1393,7 +1393,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:36 GMT + - Mon, 03 Jul 2023 19:47:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1403,7 +1403,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 68211b2a-2d83-4b8a-98e3-f0d2935327d0 + - 3f0d25fc-78b2-4c46-8758-94e7381e5108 status: 200 OK code: 200 duration: "" @@ -1414,19 +1414,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d6c30ca1-bb28-4aaf-969a-11908bcdf353 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/85c3851a-9159-425e-8183-48e0634abf27 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:11:00.872051Z","description":"","frontend_count":0,"id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","instances":[{"created_at":"2023-06-29T13:09:44.587190Z","id":"e14718ed-8260-4c49-9eaa-c0cb6cf3a225","ip_address":"10.64.216.131","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:11:35.479049Z","zone":"fr-par-1"}],"ip":[{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","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":"2023-06-29T13:11:03.475351Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T19:46:34.282376Z","description":"","frontend_count":0,"id":"85c3851a-9159-425e-8183-48e0634abf27","instances":[{"created_at":"2023-07-03T19:44:25.767021Z","id":"dd53c7f1-2bf4-482b-84ed-b73c46afe6c0","ip_address":"10.64.120.35","region":"fr-par","status":"ready","updated_at":"2023-07-03T19:47:09.114492Z","zone":"fr-par-1"}],"ip":[{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":"85c3851a-9159-425e-8183-48e0634abf27","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","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":"2023-07-03T19:46:36.887199Z","zone":"fr-par-1"}' headers: Content-Length: - - "1089" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:36 GMT + - Mon, 03 Jul 2023 19:47:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1436,7 +1436,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 607dea99-5785-4749-8eec-ce39c840b780 + - 794a3267-7c24-44fa-bda7-a097ec9879c6 status: 200 OK code: 200 duration: "" @@ -1447,19 +1447,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d6c30ca1-bb28-4aaf-969a-11908bcdf353 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/85c3851a-9159-425e-8183-48e0634abf27 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:11:00.872051Z","description":"","frontend_count":0,"id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","instances":[{"created_at":"2023-06-29T13:09:44.587190Z","id":"e14718ed-8260-4c49-9eaa-c0cb6cf3a225","ip_address":"10.64.216.131","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:11:35.479049Z","zone":"fr-par-1"}],"ip":[{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","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":"2023-06-29T13:11:03.475351Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T19:46:34.282376Z","description":"","frontend_count":0,"id":"85c3851a-9159-425e-8183-48e0634abf27","instances":[{"created_at":"2023-07-03T19:44:25.767021Z","id":"dd53c7f1-2bf4-482b-84ed-b73c46afe6c0","ip_address":"10.64.120.35","region":"fr-par","status":"ready","updated_at":"2023-07-03T19:47:09.114492Z","zone":"fr-par-1"}],"ip":[{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":"85c3851a-9159-425e-8183-48e0634abf27","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","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":"2023-07-03T19:46:36.887199Z","zone":"fr-par-1"}' headers: Content-Length: - - "1089" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:36 GMT + - Mon, 03 Jul 2023 19:47:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1469,7 +1469,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee8f593d-8478-4494-bbd1-cc4dd24f5548 + - 914d58db-e122-4b01-ab9d-8d1e3fa8b9fe status: 200 OK code: 200 duration: "" @@ -1480,19 +1480,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d6c30ca1-bb28-4aaf-969a-11908bcdf353/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/85c3851a-9159-425e-8183-48e0634abf27/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:36 GMT + - Mon, 03 Jul 2023 19:47:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1502,7 +1502,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b4d75fb0-ed78-4cda-aa9d-903d1e622317 + - e5e69f53-6144-460c-9714-3e57e12b7467 status: 200 OK code: 200 duration: "" @@ -1513,19 +1513,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/d1b4c21e-3de7-40ae-a76a-a63b730f0049 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/ecdc04ef-720b-471b-9f1f-5ee01e94d50d method: GET response: - body: '{"created_at":"2023-06-29T13:11:31.519883Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"leastconn","forward_protocol":"tcp","health_check":{"check_delay":10000,"check_max_retries":3,"check_send_proxy":false,"check_timeout":15000,"port":81,"tcp_config":{},"transient_check_delay":null},"id":"d1b4c21e-3de7-40ae-a76a-a63b730f0049","ignore_ssl_server_verify":true,"lb":{"backend_count":1,"created_at":"2023-06-29T13:11:00.872051Z","description":"","frontend_count":0,"id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","instances":[{"created_at":"2023-06-29T13:09:44.587190Z","id":"e14718ed-8260-4c49-9eaa-c0cb6cf3a225","ip_address":"10.64.216.131","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:11:35.479049Z","zone":"fr-par-1"}],"ip":[{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","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":"2023-06-29T13:11:03.475351Z","zone":"fr-par-1"},"max_connections":42,"max_retries":6,"name":"bkd01","on_marked_down_action":"shutdown_sessions","pool":["51.15.207.142","163.172.168.201"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":1,"send_proxy_v2":false,"ssl_bridging":true,"sticky_sessions":"cookie","sticky_sessions_cookie_name":"session-id","timeout_connect":2500,"timeout_queue":"4s","timeout_server":1000,"timeout_tunnel":3000,"updated_at":"2023-06-29T13:11:35.181999Z"}' + body: '{"created_at":"2023-07-03T19:47:04.934399Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"leastconn","forward_protocol":"tcp","health_check":{"check_delay":10000,"check_max_retries":3,"check_send_proxy":false,"check_timeout":15000,"port":81,"tcp_config":{},"transient_check_delay":"0.200s"},"id":"ecdc04ef-720b-471b-9f1f-5ee01e94d50d","ignore_ssl_server_verify":true,"lb":{"backend_count":1,"created_at":"2023-07-03T19:46:34.282376Z","description":"","frontend_count":0,"id":"85c3851a-9159-425e-8183-48e0634abf27","instances":[{"created_at":"2023-07-03T19:44:25.767021Z","id":"dd53c7f1-2bf4-482b-84ed-b73c46afe6c0","ip_address":"10.64.120.35","region":"fr-par","status":"ready","updated_at":"2023-07-03T19:47:09.114492Z","zone":"fr-par-1"}],"ip":[{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":"85c3851a-9159-425e-8183-48e0634abf27","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","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":"2023-07-03T19:46:36.887199Z","zone":"fr-par-1"},"max_connections":42,"max_retries":6,"name":"bkd01","on_marked_down_action":"shutdown_sessions","pool":["163.172.171.183","163.172.169.96"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":1,"send_proxy_v2":false,"ssl_bridging":true,"sticky_sessions":"cookie","sticky_sessions_cookie_name":"session-id","timeout_connect":2500,"timeout_queue":"4s","timeout_server":1000,"timeout_tunnel":3000,"updated_at":"2023-07-03T19:47:08.807221Z"}' headers: Content-Length: - - "1958" + - "1903" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:36 GMT + - Mon, 03 Jul 2023 19:47:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1535,7 +1535,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23deb793-0a07-4487-b78c-2fb1a9a13302 + - 456b793d-cb33-48ab-bcdd-d3f2cee80ec0 status: 200 OK code: 200 duration: "" @@ -1546,19 +1546,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d6c30ca1-bb28-4aaf-969a-11908bcdf353 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/85c3851a-9159-425e-8183-48e0634abf27 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:11:00.872051Z","description":"","frontend_count":0,"id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","instances":[{"created_at":"2023-06-29T13:09:44.587190Z","id":"e14718ed-8260-4c49-9eaa-c0cb6cf3a225","ip_address":"10.64.216.131","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:11:35.479049Z","zone":"fr-par-1"}],"ip":[{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","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":"2023-06-29T13:11:03.475351Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T19:46:34.282376Z","description":"","frontend_count":0,"id":"85c3851a-9159-425e-8183-48e0634abf27","instances":[{"created_at":"2023-07-03T19:44:25.767021Z","id":"dd53c7f1-2bf4-482b-84ed-b73c46afe6c0","ip_address":"10.64.120.35","region":"fr-par","status":"ready","updated_at":"2023-07-03T19:47:09.114492Z","zone":"fr-par-1"}],"ip":[{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":"85c3851a-9159-425e-8183-48e0634abf27","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","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":"2023-07-03T19:46:36.887199Z","zone":"fr-par-1"}' headers: Content-Length: - - "1089" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:36 GMT + - Mon, 03 Jul 2023 19:47:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1568,7 +1568,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e2fc98f-8168-40cf-b6e1-4c493de8ed4e + - 3c2c254f-67cc-4102-9ebd-89f7c5b62bf4 status: 200 OK code: 200 duration: "" @@ -1579,19 +1579,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d6c30ca1-bb28-4aaf-969a-11908bcdf353 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/85c3851a-9159-425e-8183-48e0634abf27 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:11:00.872051Z","description":"","frontend_count":0,"id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","instances":[{"created_at":"2023-06-29T13:09:44.587190Z","id":"e14718ed-8260-4c49-9eaa-c0cb6cf3a225","ip_address":"10.64.216.131","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:11:35.479049Z","zone":"fr-par-1"}],"ip":[{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","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":"2023-06-29T13:11:03.475351Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T19:46:34.282376Z","description":"","frontend_count":0,"id":"85c3851a-9159-425e-8183-48e0634abf27","instances":[{"created_at":"2023-07-03T19:44:25.767021Z","id":"dd53c7f1-2bf4-482b-84ed-b73c46afe6c0","ip_address":"10.64.120.35","region":"fr-par","status":"ready","updated_at":"2023-07-03T19:47:09.114492Z","zone":"fr-par-1"}],"ip":[{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":"85c3851a-9159-425e-8183-48e0634abf27","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","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":"2023-07-03T19:46:36.887199Z","zone":"fr-par-1"}' headers: Content-Length: - - "1089" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:37 GMT + - Mon, 03 Jul 2023 19:47:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1601,7 +1601,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f20635c0-10a3-4921-ad73-4722cc2ddf41 + - f964fe84-03a0-4e2f-9fda-e5062c937346 status: 200 OK code: 200 duration: "" @@ -1612,7 +1612,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/d1b4c21e-3de7-40ae-a76a-a63b730f0049 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/ecdc04ef-720b-471b-9f1f-5ee01e94d50d method: DELETE response: body: "" @@ -1622,7 +1622,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:37 GMT + - Mon, 03 Jul 2023 19:47:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1632,7 +1632,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71785811-2b63-4a96-9e6f-cec51db26ec3 + - 9779fd39-ad67-4dc0-9d13-2acd1d4c4877 status: 204 No Content code: 204 duration: "" @@ -1643,19 +1643,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d6c30ca1-bb28-4aaf-969a-11908bcdf353 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/85c3851a-9159-425e-8183-48e0634abf27 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:11:00.872051Z","description":"","frontend_count":0,"id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","instances":[{"created_at":"2023-06-29T13:09:44.587190Z","id":"e14718ed-8260-4c49-9eaa-c0cb6cf3a225","ip_address":"10.64.216.131","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:11:37.184706Z","zone":"fr-par-1"}],"ip":[{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","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":"2023-06-29T13:11:03.475351Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T19:46:34.282376Z","description":"","frontend_count":0,"id":"85c3851a-9159-425e-8183-48e0634abf27","instances":[{"created_at":"2023-07-03T19:44:25.767021Z","id":"dd53c7f1-2bf4-482b-84ed-b73c46afe6c0","ip_address":"10.64.120.35","region":"fr-par","status":"pending","updated_at":"2023-07-03T19:47:11.123312Z","zone":"fr-par-1"}],"ip":[{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":"85c3851a-9159-425e-8183-48e0634abf27","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","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":"2023-07-03T19:46:36.887199Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1062" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:37 GMT + - Mon, 03 Jul 2023 19:47:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1665,7 +1665,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9dd370b4-a874-4725-a780-73077b97667d + - c54f4cd0-7161-4719-b7a5-a5ee7f698ccc status: 200 OK code: 200 duration: "" @@ -1676,19 +1676,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d6c30ca1-bb28-4aaf-969a-11908bcdf353 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/85c3851a-9159-425e-8183-48e0634abf27 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:11:00.872051Z","description":"","frontend_count":0,"id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","instances":[{"created_at":"2023-06-29T13:09:44.587190Z","id":"e14718ed-8260-4c49-9eaa-c0cb6cf3a225","ip_address":"10.64.216.131","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:11:37.184706Z","zone":"fr-par-1"}],"ip":[{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","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":"2023-06-29T13:11:03.475351Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T19:46:34.282376Z","description":"","frontend_count":0,"id":"85c3851a-9159-425e-8183-48e0634abf27","instances":[{"created_at":"2023-07-03T19:44:25.767021Z","id":"dd53c7f1-2bf4-482b-84ed-b73c46afe6c0","ip_address":"10.64.120.35","region":"fr-par","status":"pending","updated_at":"2023-07-03T19:47:11.123312Z","zone":"fr-par-1"}],"ip":[{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":"85c3851a-9159-425e-8183-48e0634abf27","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","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":"2023-07-03T19:46:36.887199Z","zone":"fr-par-1"}' headers: Content-Length: - - "1091" + - "1062" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:37 GMT + - Mon, 03 Jul 2023 19:47:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1698,7 +1698,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76f93a20-cf87-4590-a091-574970b0cb5e + - aa1ae9c5-79ee-48a4-a485-4a88e2bef287 status: 200 OK code: 200 duration: "" @@ -1709,7 +1709,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/607f9310-4c85-4152-a2a6-f0c6272b012d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/237eb35e-a07e-448c-8948-a54824077849 method: DELETE response: body: "" @@ -1717,7 +1717,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Thu, 29 Jun 2023 13:11:37 GMT + - Mon, 03 Jul 2023 19:47:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1727,7 +1727,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c39afd9c-1162-4c60-a0e6-77f57bc83624 + - 57fff1e4-cdba-4aa9-b4b6-bd5140af66e5 status: 204 No Content code: 204 duration: "" @@ -1738,7 +1738,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2d7bc003-aa3c-4a47-9694-36a765cc1cdf + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/48ffe756-9aac-4b45-93c8-ea56d9fe8304 method: DELETE response: body: "" @@ -1746,7 +1746,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Thu, 29 Jun 2023 13:11:37 GMT + - Mon, 03 Jul 2023 19:47:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1756,7 +1756,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 798d5cb0-7e83-448c-977a-92dfacfdc8d5 + - 8264bc0d-3458-4085-965a-e9aef14b7866 status: 204 No Content code: 204 duration: "" @@ -1767,7 +1767,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d6c30ca1-bb28-4aaf-969a-11908bcdf353?release_ip=false + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/85c3851a-9159-425e-8183-48e0634abf27?release_ip=false method: DELETE response: body: "" @@ -1777,7 +1777,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:37 GMT + - Mon, 03 Jul 2023 19:47:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1787,7 +1787,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea58a969-0536-46e9-80e1-dda7122227ca + - 7491de61-7962-4b08-8cb9-6b5bbe207a10 status: 204 No Content code: 204 duration: "" @@ -1798,19 +1798,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d6c30ca1-bb28-4aaf-969a-11908bcdf353 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/85c3851a-9159-425e-8183-48e0634abf27 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:11:00.872051Z","description":"","frontend_count":0,"id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","instances":[{"created_at":"2023-06-29T13:09:44.587190Z","id":"e14718ed-8260-4c49-9eaa-c0cb6cf3a225","ip_address":"10.64.216.131","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:11:37.436280Z","zone":"fr-par-1"}],"ip":[{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":"d6c30ca1-bb28-4aaf-969a-11908bcdf353","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","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":"2023-06-29T13:11:37.540863Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T19:46:34.282376Z","description":"","frontend_count":0,"id":"85c3851a-9159-425e-8183-48e0634abf27","instances":[{"created_at":"2023-07-03T19:44:25.767021Z","id":"dd53c7f1-2bf4-482b-84ed-b73c46afe6c0","ip_address":"10.64.120.35","region":"fr-par","status":"ready","updated_at":"2023-07-03T19:47:11.392306Z","zone":"fr-par-1"}],"ip":[{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":"85c3851a-9159-425e-8183-48e0634abf27","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","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":"2023-07-03T19:47:11.494200Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:11:37 GMT + - Mon, 03 Jul 2023 19:47:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1820,7 +1820,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d67621d-bc8f-43d1-becc-5643fa7532b5 + - a14141ea-4e92-4a1e-9b81-a96435b76d3d status: 200 OK code: 200 duration: "" @@ -1831,7 +1831,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d6c30ca1-bb28-4aaf-969a-11908bcdf353 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/85c3851a-9159-425e-8183-48e0634abf27 method: GET response: body: '{"message":"lbs not Found"}' @@ -1843,7 +1843,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:12:07 GMT + - Mon, 03 Jul 2023 19:47:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1853,7 +1853,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bfdcd180-dde7-4e63-a708-c1fc62824f13 + - bfe32cbf-d069-482a-a1fe-98aba1ee3c23 status: 404 Not Found code: 404 duration: "" @@ -1864,7 +1864,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d6c30ca1-bb28-4aaf-969a-11908bcdf353 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/85c3851a-9159-425e-8183-48e0634abf27 method: GET response: body: '{"message":"lbs not Found"}' @@ -1876,7 +1876,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:12:07 GMT + - Mon, 03 Jul 2023 19:47:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1886,7 +1886,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56a6e517-4312-4683-b305-19e394208324 + - 8f5a913b-5886-4a68-872a-71ad9bb981b2 status: 404 Not Found code: 404 duration: "" @@ -1897,19 +1897,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c72d33d7-6925-4ac2-8498-c249d2e8d4ee + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66 method: GET response: - body: '{"id":"c72d33d7-6925-4ac2-8498-c249d2e8d4ee","ip_address":"51.158.57.1","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-57-1.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66","ip_address":"51.159.27.167","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-167.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "281" + - "278" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:12:07 GMT + - Mon, 03 Jul 2023 19:47:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1919,7 +1919,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf3983ee-9d0a-4111-ba0a-fdfc2110e1a9 + - 73edd92d-60c2-46e1-8cd2-9bcec7acbe78 status: 200 OK code: 200 duration: "" @@ -1930,7 +1930,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c72d33d7-6925-4ac2-8498-c249d2e8d4ee + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/23d5bf60-7dc0-4f1a-9009-68aa5bcdcb66 method: DELETE response: body: "" @@ -1940,7 +1940,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:12:08 GMT + - Mon, 03 Jul 2023 19:47:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1950,7 +1950,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d821c218-88aa-49a9-ba28-91c7aa626777 + - 1f903a0d-c3ce-40a1-899e-96c125a36cda status: 204 No Content code: 204 duration: "" @@ -1961,7 +1961,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/d1b4c21e-3de7-40ae-a76a-a63b730f0049 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/ecdc04ef-720b-471b-9f1f-5ee01e94d50d method: GET response: body: '{"message":"backend not Found"}' @@ -1973,7 +1973,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:12:09 GMT + - Mon, 03 Jul 2023 19:47:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1983,7 +1983,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec4410e5-d844-4c86-a666-33e6878e89d8 + - 233da760-5a22-4c4c-a784-62f846f81bec status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/lb-backend-health-check.cassette.yaml b/scaleway/testdata/lb-backend-health-check.cassette.yaml index 5e79663dbd..c3f5919ef6 100644 --- a/scaleway/testdata/lb-backend-health-check.cassette.yaml +++ b/scaleway/testdata/lb-backend-health-check.cassette.yaml @@ -13,16 +13,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips method: POST response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "285" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:11 GMT + - Mon, 03 Jul 2023 20:12:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -32,7 +32,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16ae41ac-4635-4397-b0c9-c862456d0398 + - 12054313-4db0-4ea3-b3ab-a2a26f91e029 status: 200 OK code: 200 duration: "" @@ -43,19 +43,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "285" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:11 GMT + - Mon, 03 Jul 2023 20:12:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -65,12 +65,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9508f66-b478-43b0-b114-5d8433139da3 + - d3f7c692-a34a-4a21-8279-9cc4709b3ddc status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-lb","description":"","ip_id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","assign_flexible_ip":null,"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":"86df9ff8-7a77-492d-9b03-4f6205127499","assign_flexible_ip":null,"tags":null,"type":"lb-s","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' form: {} headers: Content-Type: @@ -81,16 +81,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs method: POST response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:32:11.514156827Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:11.514156827Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:12:49.449105677Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:49.449105677Z","zone":"fr-par-1"}' headers: Content-Length: - - "884" + - "862" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:11 GMT + - Mon, 03 Jul 2023 20:12:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -100,7 +100,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 818d3cf9-5f6f-43f5-97aa-4e77ddf08ed4 + - 05f361a3-1968-4fb6-8ca1-f70a6f24066d status: 200 OK code: 200 duration: "" @@ -111,19 +111,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:11.514157Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"unknown","updated_at":"2023-07-03T20:12:49.658335Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:49.671983Z","zone":"fr-par-1"}' headers: Content-Length: - - "878" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:11 GMT + - Mon, 03 Jul 2023 20:12:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -133,7 +133,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 927e71af-2904-4733-9c7e-eb26c3b174b7 + - a3e9e357-6323-4590-81b0-13dda573d6a4 status: 200 OK code: 200 duration: "" @@ -144,19 +144,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:12.741508Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:12:50.534123Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:41 GMT + - Mon, 03 Jul 2023 20:13:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -166,7 +166,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - defa5622-1532-4df4-bf65-cd46fcff4c76 + - 7c124e01-84ae-4aac-8895-426e801d3278 status: 200 OK code: 200 duration: "" @@ -177,19 +177,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:12.741508Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:12:50.534123Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:41 GMT + - Mon, 03 Jul 2023 20:13:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -199,7 +199,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14458847-4782-4fe0-b5e3-7afbf3ba28b7 + - 42dc8d2c-893c-447e-a60b-f1ddab85ce28 status: 200 OK code: 200 duration: "" @@ -210,19 +210,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:41 GMT + - Mon, 03 Jul 2023 20:13:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -232,7 +232,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fca1e045-9462-462d-aaa8-64b6e36b9fc0 + - 37df99a8-2178-4835-80d0-a561c94a13b6 status: 200 OK code: 200 duration: "" @@ -243,19 +243,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:12.741508Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:12:50.534123Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:42 GMT + - Mon, 03 Jul 2023 20:13:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -265,12 +265,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9df851d7-56e9-4d7c-8985-e94f5e225d46 + - e5d08988-53be-4633-bc2d-59af81dbab85 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"bkd01","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":null,"check_delay":60000,"check_timeout":30000},"server_ip":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":null,"max_retries":3,"max_connections":null,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' + body: '{"name":"bkd01","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":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":null,"max_retries":3,"max_connections":null,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' form: {} headers: Content-Type: @@ -278,19 +278,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4/backends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07/backends method: POST response: - body: '{"created_at":"2023-06-29T13:32:42.198211074Z","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":null},"id":"5a64e1bb-b4b0-4c03-8766-0b486cf334da","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:32:42.232947768Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:32:42.198211074Z"}' + body: '{"created_at":"2023-07-03T20:13:20.200352613Z","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":"509d9eb9-5927-42f1-b193-dbbeb4d495fe","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:13:20.243651547Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:13:20.200352613Z"}' headers: Content-Length: - - "1948" + - "1892" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:42 GMT + - Mon, 03 Jul 2023 20:13:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -300,7 +300,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d492203-b9aa-4468-b45f-0650679f6cc4 + - 33bd15cb-598f-4dd2-9a1a-8dafdc095592 status: 200 OK code: 200 duration: "" @@ -311,19 +311,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:32:42.232948Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:13:20.243652Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"}' headers: Content-Length: - - "1095" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:42 GMT + - Mon, 03 Jul 2023 20:13:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -333,7 +333,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46bbd4a9-fa39-41aa-b296-dec7e07182bf + - 3dbe2b88-4f6f-436d-be95-b6f1bb5a64e8 status: 200 OK code: 200 duration: "" @@ -344,19 +344,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/5a64e1bb-b4b0-4c03-8766-0b486cf334da + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/509d9eb9-5927-42f1-b193-dbbeb4d495fe method: GET response: - body: '{"created_at":"2023-06-29T13:32:42.198211Z","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":null},"id":"5a64e1bb-b4b0-4c03-8766-0b486cf334da","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:32:42.232948Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:32:42.198211Z"}' + body: '{"created_at":"2023-07-03T20:13:20.200353Z","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":"509d9eb9-5927-42f1-b193-dbbeb4d495fe","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:13:20.243652Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:13:20.200353Z"}' headers: Content-Length: - - "1939" + - "1883" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:42 GMT + - Mon, 03 Jul 2023 20:13:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -366,7 +366,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 164b3bbd-fc47-4511-9ee8-1fdabd3a24ab + - 81ce60c1-e20b-4135-9907-40230c262dec status: 200 OK code: 200 duration: "" @@ -377,19 +377,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:42.542360Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:13:20.536148Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:42 GMT + - Mon, 03 Jul 2023 20:13:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -399,7 +399,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82daeb17-e155-4fc9-a157-d8c6a9675930 + - a7321a70-9cfb-4f89-a9ad-d34499a17d9e status: 200 OK code: 200 duration: "" @@ -410,19 +410,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "319" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:43 GMT + - Mon, 03 Jul 2023 20:13:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -432,7 +432,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d310011-dd4e-4889-83ff-2813ed7c66bd + - 6ef6505b-e4bc-4841-9e90-92c883b1033c status: 200 OK code: 200 duration: "" @@ -443,19 +443,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:42.542360Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:13:20.536148Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:43 GMT + - Mon, 03 Jul 2023 20:13:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -465,7 +465,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 586d3cca-e246-4966-9a23-c2e662256c08 + - aa097aaa-4e7e-4c7d-b470-9b20e5077be6 status: 200 OK code: 200 duration: "" @@ -476,19 +476,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:42.542360Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:13:20.536148Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:43 GMT + - Mon, 03 Jul 2023 20:13:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -498,7 +498,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a041fcf-faeb-4842-b5d2-a2235229a36e + - 9f98e238-ae24-42fc-81b8-4d02330c94ba status: 200 OK code: 200 duration: "" @@ -509,19 +509,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:43 GMT + - Mon, 03 Jul 2023 20:13:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -531,7 +531,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8ed3c97-e208-4e95-a5b1-42eca89be1dc + - fe8a8147-396c-462e-8006-628d41f310c4 status: 200 OK code: 200 duration: "" @@ -542,19 +542,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/5a64e1bb-b4b0-4c03-8766-0b486cf334da + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/509d9eb9-5927-42f1-b193-dbbeb4d495fe method: GET response: - body: '{"created_at":"2023-06-29T13:32:42.198211Z","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":null},"id":"5a64e1bb-b4b0-4c03-8766-0b486cf334da","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:42.542360Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:32:42.198211Z"}' + body: '{"created_at":"2023-07-03T20:13:20.200353Z","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":"509d9eb9-5927-42f1-b193-dbbeb4d495fe","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:13:20.536148Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:13:20.200353Z"}' headers: Content-Length: - - "1937" + - "1881" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:43 GMT + - Mon, 03 Jul 2023 20:13:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -564,7 +564,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2d66833-3e36-4886-add3-ed9931b73b3e + - 7a4a7999-ab70-49bc-bd7f-d139f64476ba status: 200 OK code: 200 duration: "" @@ -575,19 +575,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:42.542360Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:13:20.536148Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:43 GMT + - Mon, 03 Jul 2023 20:13:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -597,7 +597,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2a30747-2b1b-4028-9da3-7cb848fca925 + - c13635e5-0486-45e1-91f1-042bdaa10016 status: 200 OK code: 200 duration: "" @@ -608,19 +608,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "319" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:43 GMT + - Mon, 03 Jul 2023 20:13:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -630,7 +630,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d98be7cd-d317-4987-a3b6-bba4ea84733e + - fd2fafb9-af45-447e-9b3a-02f330f23044 status: 200 OK code: 200 duration: "" @@ -641,19 +641,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:42.542360Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:13:20.536148Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:43 GMT + - Mon, 03 Jul 2023 20:13:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -663,7 +663,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c714d46-b53c-464f-bc6c-bf982c261223 + - 05cad523-e950-432b-8ccb-21bcb1bb56ee status: 200 OK code: 200 duration: "" @@ -674,19 +674,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:42.542360Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:13:20.536148Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:43 GMT + - Mon, 03 Jul 2023 20:13:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -696,7 +696,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0855a293-61f0-437e-bc3e-0b5112c7130f + - 291ac9eb-4f6c-4c5f-b50b-5dbdc13d254b status: 200 OK code: 200 duration: "" @@ -707,19 +707,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:43 GMT + - Mon, 03 Jul 2023 20:13:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -729,7 +729,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8dd01b1-d7e3-4ec3-8dc0-afaf16c8ad3f + - d9fe37e4-4a9a-4685-b474-1b623a5d6b76 status: 200 OK code: 200 duration: "" @@ -740,19 +740,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/5a64e1bb-b4b0-4c03-8766-0b486cf334da + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/509d9eb9-5927-42f1-b193-dbbeb4d495fe method: GET response: - body: '{"created_at":"2023-06-29T13:32:42.198211Z","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":null},"id":"5a64e1bb-b4b0-4c03-8766-0b486cf334da","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:42.542360Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:32:42.198211Z"}' + body: '{"created_at":"2023-07-03T20:13:20.200353Z","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":"509d9eb9-5927-42f1-b193-dbbeb4d495fe","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:13:20.536148Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:13:20.200353Z"}' headers: Content-Length: - - "1937" + - "1881" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:44 GMT + - Mon, 03 Jul 2023 20:13:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -762,7 +762,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a81aa1f2-a4e4-42a6-b238-b0cab70e3172 + - d825787a-47ee-4154-81c7-984264b7f5e4 status: 200 OK code: 200 duration: "" @@ -773,19 +773,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:42.542360Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:13:20.536148Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:44 GMT + - Mon, 03 Jul 2023 20:13:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -795,7 +795,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b82c445b-94a5-4c7f-b8fe-cfb617afa655 + - 18d6dc99-9733-4e74-abf1-919618837856 status: 200 OK code: 200 duration: "" @@ -806,19 +806,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:42.542360Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:13:20.536148Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:44 GMT + - Mon, 03 Jul 2023 20:13:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -828,7 +828,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d636ffcc-273e-4760-b467-ae083ef648f1 + - a8085ff0-d5c0-4621-b096-993cddf8c93c status: 200 OK code: 200 duration: "" @@ -841,19 +841,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/5a64e1bb-b4b0-4c03-8766-0b486cf334da + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/509d9eb9-5927-42f1-b193-dbbeb4d495fe method: PUT response: - body: '{"created_at":"2023-06-29T13:32:42.198211Z","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":null},"id":"5a64e1bb-b4b0-4c03-8766-0b486cf334da","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:42.542360Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"},"max_connections":0,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":0,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:32:44.784381029Z"}' + body: '{"created_at":"2023-07-03T20:13:20.200353Z","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":"509d9eb9-5927-42f1-b193-dbbeb4d495fe","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:13:20.536148Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"},"max_connections":0,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":0,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:13:23.036933201Z"}' headers: Content-Length: - - "1934" + - "1878" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:44 GMT + - Mon, 03 Jul 2023 20:13:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -863,12 +863,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30d4af92-a7b0-4c43-a243-65cedb1a48a3 + - 460447e2-db91-4ca1-b104-be1395517544 status: 200 OK code: 200 duration: "" - request: - body: '{"port":80,"check_max_retries":2,"check_send_proxy":false,"http_config":{"uri":"http://test.com/health","method":"POST","code":404,"host_header":"test.com"},"transient_check_delay":null,"check_delay":60000,"check_timeout":30000}' + body: '{"port":80,"check_max_retries":2,"check_send_proxy":false,"http_config":{"uri":"http://test.com/health","method":"POST","code":404,"host_header":"test.com"},"transient_check_delay":"0.500000000s","check_delay":60000,"check_timeout":30000}' form: {} headers: Content-Type: @@ -876,19 +876,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/5a64e1bb-b4b0-4c03-8766-0b486cf334da/healthcheck + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/509d9eb9-5927-42f1-b193-dbbeb4d495fe/healthcheck method: PUT response: - body: '{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"http_config":{"code":404,"host_header":"test.com","method":"POST","uri":"http://test.com/health"},"port":80,"transient_check_delay":null}' + body: '{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"http_config":{"code":404,"host_header":"test.com","method":"POST","uri":"http://test.com/health"},"port":80,"transient_check_delay":"0.500s"}' headers: Content-Length: - - "237" + - "232" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:45 GMT + - Mon, 03 Jul 2023 20:13:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -898,7 +898,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f6c7f76-2210-493f-aa17-5aa062e5cf93 + - fff8a884-6ce3-4b69-a9f9-21d4347688ac status: 200 OK code: 200 duration: "" @@ -911,19 +911,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/5a64e1bb-b4b0-4c03-8766-0b486cf334da/servers + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/509d9eb9-5927-42f1-b193-dbbeb4d495fe/servers method: PUT response: - body: '{"created_at":"2023-06-29T13:32:42.198211Z","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,"http_config":{"code":404,"host_header":"test.com","method":"POST","uri":"http://test.com/health"},"port":80,"transient_check_delay":null},"id":"5a64e1bb-b4b0-4c03-8766-0b486cf334da","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:45.074722Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"},"max_connections":0,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":0,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:32:44.784381Z"}' + body: '{"created_at":"2023-07-03T20:13:20.200353Z","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,"http_config":{"code":404,"host_header":"test.com","method":"POST","uri":"http://test.com/health"},"port":80,"transient_check_delay":"0.500s"},"id":"509d9eb9-5927-42f1-b193-dbbeb4d495fe","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:13:23.361311Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"},"max_connections":0,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":0,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:13:23.036933Z"}' headers: Content-Length: - - "2017" + - "1960" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:45 GMT + - Mon, 03 Jul 2023 20:13:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -933,7 +933,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c2c526d-3548-4a44-ac78-8c1b4f303a07 + - 11d8e902-63f6-474e-a0e2-86115385b2ac status: 200 OK code: 200 duration: "" @@ -944,19 +944,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:45.074722Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:13:23.615214Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:45 GMT + - Mon, 03 Jul 2023 20:13:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -966,7 +966,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3abc66e2-119c-4f35-933c-52a84aa5fbd6 + - 22149d34-f8f4-46e2-a14c-2cdc9b9eb181 status: 200 OK code: 200 duration: "" @@ -977,19 +977,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/5a64e1bb-b4b0-4c03-8766-0b486cf334da + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/509d9eb9-5927-42f1-b193-dbbeb4d495fe method: GET response: - body: '{"created_at":"2023-06-29T13:32:42.198211Z","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,"http_config":{"code":404,"host_header":"test.com","method":"POST","uri":"http://test.com/health"},"port":80,"transient_check_delay":null},"id":"5a64e1bb-b4b0-4c03-8766-0b486cf334da","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:45.273020Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"},"max_connections":0,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":0,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:32:44.784381Z"}' + body: '{"created_at":"2023-07-03T20:13:20.200353Z","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,"http_config":{"code":404,"host_header":"test.com","method":"POST","uri":"http://test.com/health"},"port":80,"transient_check_delay":"0.500s"},"id":"509d9eb9-5927-42f1-b193-dbbeb4d495fe","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:13:23.615214Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"},"max_connections":0,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":0,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:13:23.036933Z"}' headers: Content-Length: - - "2017" + - "1958" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:45 GMT + - Mon, 03 Jul 2023 20:13:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -999,7 +999,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d34a9da-e8bc-4cb9-ae60-35ad6ddf11ad + - 419bfe06-da04-43d7-97af-02dc76ee26c1 status: 200 OK code: 200 duration: "" @@ -1010,19 +1010,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:45.273020Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:13:23.615214Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:45 GMT + - Mon, 03 Jul 2023 20:13:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1032,7 +1032,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 942f86fd-7aa9-46db-b6d3-5792c427e830 + - 4cdc22b0-07b8-4293-a1d2-a7bb52c6abc3 status: 200 OK code: 200 duration: "" @@ -1043,19 +1043,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "319" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:45 GMT + - Mon, 03 Jul 2023 20:13:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1065,7 +1065,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d6ff71b-6f95-42e0-b27c-eb944982cad5 + - b719b4ab-ecd2-41cd-86d5-d046f731dc00 status: 200 OK code: 200 duration: "" @@ -1076,19 +1076,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:45.273020Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:13:23.615214Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:45 GMT + - Mon, 03 Jul 2023 20:13:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1098,7 +1098,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d94d8925-83c1-4260-bb34-9245a2c31d20 + - 928cd72a-4bc2-43bc-b73f-a3a9a69976ae status: 200 OK code: 200 duration: "" @@ -1109,19 +1109,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:45.273020Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:13:23.615214Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:46 GMT + - Mon, 03 Jul 2023 20:13:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1131,7 +1131,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f29d9559-b43a-45fc-8b9a-42877ca5b497 + - 6e3142f4-b83b-4e1a-b3d8-b5f7f5499214 status: 200 OK code: 200 duration: "" @@ -1142,19 +1142,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:46 GMT + - Mon, 03 Jul 2023 20:13:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1164,7 +1164,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9d0e23f-0020-4fb2-8e19-7c9255f4ee07 + - 52223660-b0de-4898-b27e-3013fb323359 status: 200 OK code: 200 duration: "" @@ -1175,19 +1175,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/5a64e1bb-b4b0-4c03-8766-0b486cf334da + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/509d9eb9-5927-42f1-b193-dbbeb4d495fe method: GET response: - body: '{"created_at":"2023-06-29T13:32:42.198211Z","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,"http_config":{"code":404,"host_header":"test.com","method":"POST","uri":"http://test.com/health"},"port":80,"transient_check_delay":null},"id":"5a64e1bb-b4b0-4c03-8766-0b486cf334da","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:45.273020Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"},"max_connections":0,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":0,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:32:44.784381Z"}' + body: '{"created_at":"2023-07-03T20:13:20.200353Z","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,"http_config":{"code":404,"host_header":"test.com","method":"POST","uri":"http://test.com/health"},"port":80,"transient_check_delay":"0.500s"},"id":"509d9eb9-5927-42f1-b193-dbbeb4d495fe","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:13:23.615214Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"},"max_connections":0,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":0,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:13:23.036933Z"}' headers: Content-Length: - - "2017" + - "1958" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:46 GMT + - Mon, 03 Jul 2023 20:13:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1197,7 +1197,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d0b6bec-2416-4afe-b8a6-afc354004153 + - 48b56b34-11de-4f38-a2c3-290897110955 status: 200 OK code: 200 duration: "" @@ -1208,19 +1208,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:45.273020Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:13:23.615214Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:46 GMT + - Mon, 03 Jul 2023 20:13:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1230,7 +1230,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bcf7829e-cd03-4270-bef2-d1b8d39568b7 + - 2ad98635-af80-4fd2-ba24-075f281e64dd status: 200 OK code: 200 duration: "" @@ -1241,19 +1241,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "319" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:46 GMT + - Mon, 03 Jul 2023 20:13:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1263,7 +1263,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 18eff66c-0ff6-474d-8ea6-78f50878b6ba + - cbf69076-afce-40a1-a3dd-cdf37fccb2b1 status: 200 OK code: 200 duration: "" @@ -1274,19 +1274,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:45.273020Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:13:23.615214Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:46 GMT + - Mon, 03 Jul 2023 20:13:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1296,7 +1296,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 915e0512-a80a-47b9-ba21-12779bf6682a + - 94c54d4e-4037-4172-87e6-cfd2fb371235 status: 200 OK code: 200 duration: "" @@ -1307,19 +1307,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:45.273020Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:13:23.615214Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:46 GMT + - Mon, 03 Jul 2023 20:13:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1329,7 +1329,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53710934-24a7-42a4-a676-2daa6b292eb1 + - 9c8c25eb-f089-4f88-b646-6f63b2efb561 status: 200 OK code: 200 duration: "" @@ -1340,19 +1340,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:46 GMT + - Mon, 03 Jul 2023 20:13:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1362,7 +1362,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6509e1fb-73cd-40e6-a8df-f1d8961fe81e + - 5e569d1f-84d6-42e4-9c53-16a4d671420a status: 200 OK code: 200 duration: "" @@ -1373,19 +1373,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/5a64e1bb-b4b0-4c03-8766-0b486cf334da + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/509d9eb9-5927-42f1-b193-dbbeb4d495fe method: GET response: - body: '{"created_at":"2023-06-29T13:32:42.198211Z","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,"http_config":{"code":404,"host_header":"test.com","method":"POST","uri":"http://test.com/health"},"port":80,"transient_check_delay":null},"id":"5a64e1bb-b4b0-4c03-8766-0b486cf334da","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:45.273020Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"},"max_connections":0,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":0,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:32:44.784381Z"}' + body: '{"created_at":"2023-07-03T20:13:20.200353Z","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,"http_config":{"code":404,"host_header":"test.com","method":"POST","uri":"http://test.com/health"},"port":80,"transient_check_delay":"0.500s"},"id":"509d9eb9-5927-42f1-b193-dbbeb4d495fe","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:13:23.615214Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"},"max_connections":0,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":0,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:13:23.036933Z"}' headers: Content-Length: - - "2017" + - "1958" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:46 GMT + - Mon, 03 Jul 2023 20:13:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1395,7 +1395,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9762d36-e7e9-4382-893c-03a0e43677a1 + - 05eceec5-35de-4bba-9a29-a13b203d1fcf status: 200 OK code: 200 duration: "" @@ -1406,19 +1406,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:45.273020Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:13:23.615214Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:47 GMT + - Mon, 03 Jul 2023 20:13:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1428,7 +1428,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a1289b38-2a41-4e87-9e97-5c3a8acacb3b + - be5a631b-de93-41f4-9e6f-8462aeb9889e status: 200 OK code: 200 duration: "" @@ -1439,19 +1439,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:45.273020Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:13:23.615214Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:47 GMT + - Mon, 03 Jul 2023 20:13:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1461,7 +1461,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 056d615f-70dc-4a84-9350-c1c3e44b8616 + - 266c9c02-9aca-4720-b159-b4769c6d5175 status: 200 OK code: 200 duration: "" @@ -1474,19 +1474,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/5a64e1bb-b4b0-4c03-8766-0b486cf334da + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/509d9eb9-5927-42f1-b193-dbbeb4d495fe method: PUT response: - body: '{"created_at":"2023-06-29T13:32:42.198211Z","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,"http_config":{"code":404,"host_header":"test.com","method":"POST","uri":"http://test.com/health"},"port":80,"transient_check_delay":null},"id":"5a64e1bb-b4b0-4c03-8766-0b486cf334da","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:45.273020Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"},"max_connections":0,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":0,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:32:47.568036909Z"}' + body: '{"created_at":"2023-07-03T20:13:20.200353Z","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,"http_config":{"code":404,"host_header":"test.com","method":"POST","uri":"http://test.com/health"},"port":80,"transient_check_delay":"0.500s"},"id":"509d9eb9-5927-42f1-b193-dbbeb4d495fe","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:13:23.615214Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"},"max_connections":0,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":0,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:13:26.145453180Z"}' headers: Content-Length: - - "2020" + - "1961" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:47 GMT + - Mon, 03 Jul 2023 20:13:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1496,12 +1496,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3714b997-8ea2-421c-b23d-f87f68ed58f8 + - 1e2d69c0-9bdf-4a1a-aee1-42c1429fe246 status: 200 OK code: 200 duration: "" - request: - body: '{"port":80,"check_max_retries":2,"check_send_proxy":false,"https_config":{"uri":"http://test.com/health","method":"POST","code":404,"host_header":"test.com","sni":"sni.test.com"},"transient_check_delay":null,"check_delay":60000,"check_timeout":30000}' + body: '{"port":80,"check_max_retries":2,"check_send_proxy":false,"https_config":{"uri":"http://test.com/health","method":"POST","code":404,"host_header":"test.com","sni":"sni.test.com"},"transient_check_delay":"0.500000000s","check_delay":60000,"check_timeout":30000}' form: {} headers: Content-Type: @@ -1509,19 +1509,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/5a64e1bb-b4b0-4c03-8766-0b486cf334da/healthcheck + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/509d9eb9-5927-42f1-b193-dbbeb4d495fe/healthcheck method: PUT response: - body: '{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"https_config":{"code":404,"host_header":"test.com","method":"POST","sni":"sni.test.com","uri":"http://test.com/health"},"port":80,"transient_check_delay":null}' + body: '{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"https_config":{"code":404,"host_header":"test.com","method":"POST","sni":"sni.test.com","uri":"http://test.com/health"},"port":80,"transient_check_delay":"0.500s"}' headers: Content-Length: - - "260" + - "254" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:47 GMT + - Mon, 03 Jul 2023 20:13:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1531,7 +1531,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd52730f-942d-4fa5-a7bc-5cdb25541d19 + - 3f8a3b68-a844-44d6-b117-0b5fa89945f4 status: 200 OK code: 200 duration: "" @@ -1544,19 +1544,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/5a64e1bb-b4b0-4c03-8766-0b486cf334da/servers + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/509d9eb9-5927-42f1-b193-dbbeb4d495fe/servers method: PUT response: - body: '{"created_at":"2023-06-29T13:32:42.198211Z","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,"https_config":{"code":404,"host_header":"test.com","method":"POST","sni":"sni.test.com","uri":"http://test.com/health"},"port":80,"transient_check_delay":null},"id":"5a64e1bb-b4b0-4c03-8766-0b486cf334da","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:47.862947Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"},"max_connections":0,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":0,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:32:47.568037Z"}' + body: '{"created_at":"2023-07-03T20:13:20.200353Z","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,"https_config":{"code":404,"host_header":"test.com","method":"POST","sni":"sni.test.com","uri":"http://test.com/health"},"port":80,"transient_check_delay":"0.500s"},"id":"509d9eb9-5927-42f1-b193-dbbeb4d495fe","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:13:26.464703Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"},"max_connections":0,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":0,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:13:26.145453Z"}' headers: Content-Length: - - "2040" + - "1980" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:48 GMT + - Mon, 03 Jul 2023 20:13:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1566,7 +1566,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 186dc79b-4865-4411-bfb2-b8905a8d4ad0 + - 5f7e97db-b170-449c-b0b2-4da7bbe4e1c7 status: 200 OK code: 200 duration: "" @@ -1577,19 +1577,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:47.862947Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:13:26.464703Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:48 GMT + - Mon, 03 Jul 2023 20:13:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1599,7 +1599,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60ee86b6-0f9c-4da3-8cf7-048460f30c01 + - 2f2f3699-fbfb-45c8-a18e-46c1814940c3 status: 200 OK code: 200 duration: "" @@ -1610,19 +1610,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/5a64e1bb-b4b0-4c03-8766-0b486cf334da + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/509d9eb9-5927-42f1-b193-dbbeb4d495fe method: GET response: - body: '{"created_at":"2023-06-29T13:32:42.198211Z","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,"https_config":{"code":404,"host_header":"test.com","method":"POST","sni":"sni.test.com","uri":"http://test.com/health"},"port":80,"transient_check_delay":null},"id":"5a64e1bb-b4b0-4c03-8766-0b486cf334da","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:48.107995Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"},"max_connections":0,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":0,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:32:47.568037Z"}' + body: '{"created_at":"2023-07-03T20:13:20.200353Z","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,"https_config":{"code":404,"host_header":"test.com","method":"POST","sni":"sni.test.com","uri":"http://test.com/health"},"port":80,"transient_check_delay":"0.500s"},"id":"509d9eb9-5927-42f1-b193-dbbeb4d495fe","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:13:26.679885Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"},"max_connections":0,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":0,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:13:26.145453Z"}' headers: Content-Length: - - "2040" + - "1980" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:48 GMT + - Mon, 03 Jul 2023 20:13:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1632,7 +1632,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86f6c959-5bbf-42ef-a217-d2fecc43d786 + - 6a765ff5-cc83-4e5a-b80b-a37353653d6b status: 200 OK code: 200 duration: "" @@ -1643,19 +1643,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:48.107995Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:13:26.679885Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:48 GMT + - Mon, 03 Jul 2023 20:13:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1665,7 +1665,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e15da75-c839-4367-9562-641c3d8a6dd1 + - 20e691e7-0086-4a8d-ae37-2cd7ff4e3362 status: 200 OK code: 200 duration: "" @@ -1676,19 +1676,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "319" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:48 GMT + - Mon, 03 Jul 2023 20:13:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1698,7 +1698,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 10b77e63-933d-41b4-9eca-8c1f964e30e0 + - 4cde0c3b-86b9-4596-9925-2a51033cbf55 status: 200 OK code: 200 duration: "" @@ -1709,19 +1709,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:48.107995Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:13:26.679885Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:48 GMT + - Mon, 03 Jul 2023 20:13:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1731,7 +1731,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4126671-af86-4403-89d6-0fda97093fdb + - 12b1420c-1046-4489-8873-7813b062efae status: 200 OK code: 200 duration: "" @@ -1742,19 +1742,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:48.107995Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:13:26.679885Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:48 GMT + - Mon, 03 Jul 2023 20:13:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1764,7 +1764,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eae0df48-c747-410d-b40a-e8588df73369 + - 9c7ea570-f335-463c-ad01-cdc2f633bd86 status: 200 OK code: 200 duration: "" @@ -1775,19 +1775,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:48 GMT + - Mon, 03 Jul 2023 20:13:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1797,7 +1797,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16e42c3f-bb85-472b-ac87-7b50d11598e9 + - baafebd8-a9ed-4c86-8ecd-5bc3f39ee0a1 status: 200 OK code: 200 duration: "" @@ -1808,19 +1808,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/5a64e1bb-b4b0-4c03-8766-0b486cf334da + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/509d9eb9-5927-42f1-b193-dbbeb4d495fe method: GET response: - body: '{"created_at":"2023-06-29T13:32:42.198211Z","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,"https_config":{"code":404,"host_header":"test.com","method":"POST","sni":"sni.test.com","uri":"http://test.com/health"},"port":80,"transient_check_delay":null},"id":"5a64e1bb-b4b0-4c03-8766-0b486cf334da","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:48.107995Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"},"max_connections":0,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":0,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:32:47.568037Z"}' + body: '{"created_at":"2023-07-03T20:13:20.200353Z","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,"https_config":{"code":404,"host_header":"test.com","method":"POST","sni":"sni.test.com","uri":"http://test.com/health"},"port":80,"transient_check_delay":"0.500s"},"id":"509d9eb9-5927-42f1-b193-dbbeb4d495fe","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:13:26.679885Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"},"max_connections":0,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":0,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:13:26.145453Z"}' headers: Content-Length: - - "2040" + - "1980" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:49 GMT + - Mon, 03 Jul 2023 20:13:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1830,7 +1830,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2b7dc4d-fe34-4973-9a62-0a2661386d46 + - 92d15fd4-4086-418f-a950-ced1c55dfcce status: 200 OK code: 200 duration: "" @@ -1841,19 +1841,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:48.107995Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:13:26.679885Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:49 GMT + - Mon, 03 Jul 2023 20:13:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1863,7 +1863,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc291dda-a36c-4b8e-84d1-dfc51b4867aa + - 0ee22ea0-f4fe-4c88-989f-a2a3e59f5c80 status: 200 OK code: 200 duration: "" @@ -1874,19 +1874,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:48.107995Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:13:26.679885Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:49 GMT + - Mon, 03 Jul 2023 20:13:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1896,7 +1896,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f013db7f-9d5c-4995-9e93-03d1122566cf + - a9cfc674-d198-415f-a390-c97fe3f7b6b6 status: 200 OK code: 200 duration: "" @@ -1907,7 +1907,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/5a64e1bb-b4b0-4c03-8766-0b486cf334da + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/509d9eb9-5927-42f1-b193-dbbeb4d495fe method: DELETE response: body: "" @@ -1917,7 +1917,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:49 GMT + - Mon, 03 Jul 2023 20:13:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1927,7 +1927,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2bf212d4-5b54-4627-bb93-b739caca0773 + - a59a3d76-9576-409e-9cd7-00401360e4f3 status: 204 No Content code: 204 duration: "" @@ -1938,19 +1938,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:32:49.715318Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:13:28.397168Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"}' headers: Content-Length: - - "1095" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:49 GMT + - Mon, 03 Jul 2023 20:13:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1960,7 +1960,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ef915d5-d9e0-44ef-9b1a-07b3b8ba8076 + - 0f69b31e-f19c-47c2-9b0a-9dda17eb96ea status: 200 OK code: 200 duration: "" @@ -1971,19 +1971,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:32:49.715318Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:13.795169Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:13:28.666193Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:12:51.580790Z","zone":"fr-par-1"}' headers: Content-Length: - - "1095" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:49 GMT + - Mon, 03 Jul 2023 20:13:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1993,7 +1993,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 531e5478-d426-41fb-b4eb-d51850d6885d + - 3e7589eb-6a5b-477f-a2a7-1f64c959db98 status: 200 OK code: 200 duration: "" @@ -2004,7 +2004,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4?release_ip=false + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07?release_ip=false method: DELETE response: body: "" @@ -2014,7 +2014,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:50 GMT + - Mon, 03 Jul 2023 20:13:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2024,7 +2024,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 141cf852-acf4-4fc9-a4db-c448e4dac6d6 + - 58393761-b2c6-4426-a8a1-0cadfa7742f0 status: 204 No Content code: 204 duration: "" @@ -2035,19 +2035,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:32:11.514157Z","description":"","frontend_count":0,"id":"05df75de-41a3-463d-b650-eefe27e713e4","instances":[{"created_at":"2023-06-29T13:31:06.411685Z","id":"f1d33d15-393d-419e-bc50-467d16e74493","ip_address":"10.64.226.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:32:49.973190Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"05df75de-41a3-463d-b650-eefe27e713e4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:32:50.088651Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:12:49.449106Z","description":"","frontend_count":0,"id":"7c693d48-6d64-45a9-9868-f8e028724d07","instances":[{"created_at":"2023-07-03T13:15:24.421137Z","id":"0c8e8d8b-872e-47fb-a1d0-c6ebcf8bfd8f","ip_address":"10.68.20.83","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:13:28.666193Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"7c693d48-6d64-45a9-9868-f8e028724d07","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:13:28.852642Z","zone":"fr-par-1"}' headers: Content-Length: - - "1097" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:32:50 GMT + - Mon, 03 Jul 2023 20:13:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2057,7 +2057,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bcf49910-9d52-40e3-81ab-b0c304065789 + - 902b67dc-3e94-4f2c-8f38-ca6286c17ced status: 200 OK code: 200 duration: "" @@ -2068,7 +2068,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07 method: GET response: body: '{"message":"lbs not Found"}' @@ -2080,7 +2080,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:33:20 GMT + - Mon, 03 Jul 2023 20:13:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2090,7 +2090,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ae0c8ee-5879-4dd7-af0f-18c529a3ae56 + - d74770b3-12f8-40e7-9d2b-8aa928a1d729 status: 404 Not Found code: 404 duration: "" @@ -2101,7 +2101,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/05df75de-41a3-463d-b650-eefe27e713e4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7c693d48-6d64-45a9-9868-f8e028724d07 method: GET response: body: '{"message":"lbs not Found"}' @@ -2113,7 +2113,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:33:20 GMT + - Mon, 03 Jul 2023 20:13:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2123,7 +2123,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3aaeffd6-7e3e-4c70-8424-dfc505e768ae + - f6578120-6306-4224-92a6-5c965c25b86e status: 404 Not Found code: 404 duration: "" @@ -2134,19 +2134,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "285" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:33:20 GMT + - Mon, 03 Jul 2023 20:13:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2156,7 +2156,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1435c5d9-8de0-4b94-a1f1-1df7c81dc169 + - df81d178-b364-4fba-8df7-c9447ec116c9 status: 200 OK code: 200 duration: "" @@ -2167,7 +2167,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: DELETE response: body: "" @@ -2177,7 +2177,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:33:20 GMT + - Mon, 03 Jul 2023 20:13:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2187,7 +2187,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e669a4c5-4da1-45ae-9060-c43c9e4c5641 + - c84712ff-00bd-4bd3-bcc6-994b0d18ab5c status: 204 No Content code: 204 duration: "" @@ -2198,7 +2198,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/5a64e1bb-b4b0-4c03-8766-0b486cf334da + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/509d9eb9-5927-42f1-b193-dbbeb4d495fe method: GET response: body: '{"message":"backend not Found"}' @@ -2210,7 +2210,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:33:20 GMT + - Mon, 03 Jul 2023 20:13:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2220,7 +2220,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9da75bd-3a52-4e1c-b427-2196e306713f + - a0f4ee71-7da9-405b-b3c4-a685f4d8f6af status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/lb-backend-with-failover-host.cassette.yaml b/scaleway/testdata/lb-backend-with-failover-host.cassette.yaml index 6eeb177783..5466386b2f 100644 --- a/scaleway/testdata/lb-backend-with-failover-host.cassette.yaml +++ b/scaleway/testdata/lb-backend-with-failover-host.cassette.yaml @@ -13,16 +13,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips method: POST response: - body: '{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "287" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:41:25 GMT + - Mon, 03 Jul 2023 20:00:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -32,7 +32,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07ac5a57-2576-4318-baa6-8beb53c8bce2 + - cd92c509-ac87-4f6e-b954-5710caf5362e status: 200 OK code: 200 duration: "" @@ -43,19 +43,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/b72dd78a-c646-45bb-a1cc-69b23ca543db + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "287" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:41:25 GMT + - Mon, 03 Jul 2023 20:00:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -65,12 +65,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54cdd7ae-1590-410f-bd06-5833c227083b + - b24d7b30-08f2-4c10-8efa-ff13b55dad43 status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-lb","description":"","ip_id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","assign_flexible_ip":null,"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":"86df9ff8-7a77-492d-9b03-4f6205127499","assign_flexible_ip":null,"tags":null,"type":"lb-s","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' form: {} headers: Content-Type: @@ -81,16 +81,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs method: POST response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:41:25.948309890Z","description":"","frontend_count":0,"id":"6157e331-80eb-46f9-8809-63f8e4897906","instances":[],"ip":[{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":"6157e331-80eb-46f9-8809-63f8e4897906","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","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":"2023-06-29T13:41:25.948309890Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:00:48.166693665Z","description":"","frontend_count":0,"id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:00:48.166693665Z","zone":"fr-par-1"}' headers: Content-Length: - - "886" + - "862" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:41:26 GMT + - Mon, 03 Jul 2023 20:00:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -100,34 +100,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c99c50bd-ff2b-4ec0-94cb-7b8534a4fbe4 + - 244551ef-3ad5-41cb-8882-5f7b5b29f6df status: 200 OK code: 200 duration: "" - request: - body: '{"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","type":"unknown_iptype"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips - method: POST + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e813981a-c7f9-46fd-bc03-f638de4ba17c + method: GET response: - body: '{"ip":{"address":"51.15.249.78","id":"91d21ba4-62a3-42ff-99c4-92dc90e6c24d","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","prefix":null,"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null,"server":null,"state":"attached","tags":[],"type":"nat","zone":"fr-par-1"}}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:00:48.166694Z","description":"","frontend_count":0,"id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:00:48.166694Z","zone":"fr-par-1"}' headers: Content-Length: - - "305" + - "856" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:41:26 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/91d21ba4-62a3-42ff-99c4-92dc90e6c24d + - Mon, 03 Jul 2023 20:00:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -137,30 +133,34 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bca65588-cf88-44e9-93f9-1b01a8137127 - status: 201 Created - code: 201 + - 718bee17-59fe-4109-ae11-75fde4b37b9f + status: 200 OK + code: 200 duration: "" - request: - body: "" + body: '{"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","type":"unknown_iptype"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6157e331-80eb-46f9-8809-63f8e4897906 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips + method: POST response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:41:25.948310Z","description":"","frontend_count":0,"id":"6157e331-80eb-46f9-8809-63f8e4897906","instances":[{"created_at":"2023-06-29T12:52:04.694278Z","id":"b960f293-9c61-4fd2-96c8-e427148166bb","ip_address":"10.74.12.53","region":"fr-par","status":"unknown","updated_at":"2023-06-29T13:41:26.182281Z","zone":"fr-par-1"}],"ip":[{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":"6157e331-80eb-46f9-8809-63f8e4897906","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","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":"2023-06-29T13:41:26.200636Z","zone":"fr-par-1"}' + body: '{"ip":{"address":"51.15.249.78","id":"91d21ba4-62a3-42ff-99c4-92dc90e6c24d","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","prefix":null,"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null,"server":null,"state":"attached","tags":[],"type":"nat","zone":"fr-par-1"}}' headers: Content-Length: - - "1098" + - "305" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:41:26 GMT + - Mon, 03 Jul 2023 20:00:48 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/91d21ba4-62a3-42ff-99c4-92dc90e6c24d Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -170,9 +170,9 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df4a3f99-1201-4bba-abb1-9a7fcab9c144 - status: 200 OK - code: 200 + - 71eb3172-6ea7-40e1-ad94-9b54d130e39f + status: 201 Created + code: 201 duration: "" - request: body: "" @@ -193,7 +193,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:41:26 GMT + - Mon, 03 Jul 2023 20:00:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -203,7 +203,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13228fbe-c741-44f2-8dc7-5c8cdeef74e9 + - 580df799-187f-4328-8e9e-495bc47fea45 status: 200 OK code: 200 duration: "" @@ -214,19 +214,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6157e331-80eb-46f9-8809-63f8e4897906 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e813981a-c7f9-46fd-bc03-f638de4ba17c method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:41:25.948310Z","description":"","frontend_count":0,"id":"6157e331-80eb-46f9-8809-63f8e4897906","instances":[{"created_at":"2023-06-29T12:52:04.694278Z","id":"b960f293-9c61-4fd2-96c8-e427148166bb","ip_address":"10.74.12.53","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:41:27.267689Z","zone":"fr-par-1"}],"ip":[{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":"6157e331-80eb-46f9-8809-63f8e4897906","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","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":"2023-06-29T13:41:28.434463Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:00:48.166694Z","description":"","frontend_count":0,"id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","instances":[{"created_at":"2023-07-03T19:59:54.663451Z","id":"9794a622-5f57-402f-b2d9-4a40c7fd1b74","ip_address":"10.64.86.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:00:49.623798Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:00:50.600039Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1062" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:41:56 GMT + - Mon, 03 Jul 2023 20:01:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -236,7 +236,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a2c48f9-ebf1-45d7-82c5-9ae674aa579d + - 4cd6876d-f73e-4f07-95f9-295380cb11a7 status: 200 OK code: 200 duration: "" @@ -247,19 +247,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6157e331-80eb-46f9-8809-63f8e4897906 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e813981a-c7f9-46fd-bc03-f638de4ba17c method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:41:25.948310Z","description":"","frontend_count":0,"id":"6157e331-80eb-46f9-8809-63f8e4897906","instances":[{"created_at":"2023-06-29T12:52:04.694278Z","id":"b960f293-9c61-4fd2-96c8-e427148166bb","ip_address":"10.74.12.53","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:41:27.267689Z","zone":"fr-par-1"}],"ip":[{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":"6157e331-80eb-46f9-8809-63f8e4897906","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","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":"2023-06-29T13:41:28.434463Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:00:48.166694Z","description":"","frontend_count":0,"id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","instances":[{"created_at":"2023-07-03T19:59:54.663451Z","id":"9794a622-5f57-402f-b2d9-4a40c7fd1b74","ip_address":"10.64.86.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:00:49.623798Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:00:50.600039Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1062" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:41:56 GMT + - Mon, 03 Jul 2023 20:01:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -269,7 +269,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a8e667b-4cc6-4f42-a86c-14259f37658d + - 05d61194-8adf-42d6-a95c-956fac96bf30 status: 200 OK code: 200 duration: "" @@ -280,19 +280,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6157e331-80eb-46f9-8809-63f8e4897906/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e813981a-c7f9-46fd-bc03-f638de4ba17c/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:41:56 GMT + - Mon, 03 Jul 2023 20:01:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -302,7 +302,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13d3f77c-b43b-4515-9c58-a321a9145d9d + - a47a0cc0-e72b-4932-86bf-53fe7dbdb914 status: 200 OK code: 200 duration: "" @@ -313,19 +313,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6157e331-80eb-46f9-8809-63f8e4897906 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e813981a-c7f9-46fd-bc03-f638de4ba17c method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:41:25.948310Z","description":"","frontend_count":0,"id":"6157e331-80eb-46f9-8809-63f8e4897906","instances":[{"created_at":"2023-06-29T12:52:04.694278Z","id":"b960f293-9c61-4fd2-96c8-e427148166bb","ip_address":"10.74.12.53","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:41:27.267689Z","zone":"fr-par-1"}],"ip":[{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":"6157e331-80eb-46f9-8809-63f8e4897906","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","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":"2023-06-29T13:41:28.434463Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:00:48.166694Z","description":"","frontend_count":0,"id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","instances":[{"created_at":"2023-07-03T19:59:54.663451Z","id":"9794a622-5f57-402f-b2d9-4a40c7fd1b74","ip_address":"10.64.86.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:00:49.623798Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:00:50.600039Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1062" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:41:56 GMT + - Mon, 03 Jul 2023 20:01:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -335,12 +335,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e75ffb60-a2fa-4613-b35e-4641279fcb31 + - 1e1395ab-8232-48f9-80bd-03b2e1108ed3 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"bkd01","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_max_retries":2,"check_send_proxy":false,"transient_check_delay":null,"check_delay":60000,"check_timeout":30000},"server_ip":["51.15.249.78"],"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":null,"max_retries":3,"max_connections":null,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' + body: '{"name":"bkd01","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_max_retries":2,"check_send_proxy":false,"transient_check_delay":"0.500000000s","check_delay":60000,"check_timeout":30000},"server_ip":["51.15.249.78"],"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":null,"max_retries":3,"max_connections":null,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' form: {} headers: Content-Type: @@ -348,19 +348,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6157e331-80eb-46f9-8809-63f8e4897906/backends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e813981a-c7f9-46fd-bc03-f638de4ba17c/backends method: POST response: - body: '{"created_at":"2023-06-29T13:41:56.661350559Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"5632e251-caa6-4770-9c85-bc30f04bc211","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:41:25.948310Z","description":"","frontend_count":0,"id":"6157e331-80eb-46f9-8809-63f8e4897906","instances":[{"created_at":"2023-06-29T12:52:04.694278Z","id":"b960f293-9c61-4fd2-96c8-e427148166bb","ip_address":"10.74.12.53","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:41:56.697624337Z","zone":"fr-par-1"}],"ip":[{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":"6157e331-80eb-46f9-8809-63f8e4897906","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","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":"2023-06-29T13:41:28.434463Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["51.15.249.78"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:41:56.661350559Z"}' + body: '{"created_at":"2023-07-03T20:01:18.871342434Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"1325c853-6573-4807-b00e-281ce00d9cea","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:00:48.166694Z","description":"","frontend_count":0,"id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","instances":[{"created_at":"2023-07-03T19:59:54.663451Z","id":"9794a622-5f57-402f-b2d9-4a40c7fd1b74","ip_address":"10.64.86.5","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:01:18.896699678Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:00:50.600039Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["51.15.249.78"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:01:18.871342434Z"}' headers: Content-Length: - - "1963" + - "1906" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:41:56 GMT + - Mon, 03 Jul 2023 20:01:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -370,7 +370,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d84c398-ed86-4cb1-85d0-4c1851f1af94 + - f3395299-f0ca-468f-b124-494ac8e8f0df status: 200 OK code: 200 duration: "" @@ -381,19 +381,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6157e331-80eb-46f9-8809-63f8e4897906 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e813981a-c7f9-46fd-bc03-f638de4ba17c method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:41:25.948310Z","description":"","frontend_count":0,"id":"6157e331-80eb-46f9-8809-63f8e4897906","instances":[{"created_at":"2023-06-29T12:52:04.694278Z","id":"b960f293-9c61-4fd2-96c8-e427148166bb","ip_address":"10.74.12.53","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:41:56.938239Z","zone":"fr-par-1"}],"ip":[{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":"6157e331-80eb-46f9-8809-63f8e4897906","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","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":"2023-06-29T13:41:28.434463Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:00:48.166694Z","description":"","frontend_count":0,"id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","instances":[{"created_at":"2023-07-03T19:59:54.663451Z","id":"9794a622-5f57-402f-b2d9-4a40c7fd1b74","ip_address":"10.64.86.5","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:01:18.896700Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:00:50.600039Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:41:56 GMT + - Mon, 03 Jul 2023 20:01:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -403,7 +403,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e441afa-fe44-463c-b961-6ca3b98abe77 + - d4cd3f15-2e97-4f61-9f69-87cc3966d61a status: 200 OK code: 200 duration: "" @@ -414,19 +414,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/5632e251-caa6-4770-9c85-bc30f04bc211 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/1325c853-6573-4807-b00e-281ce00d9cea method: GET response: - body: '{"created_at":"2023-06-29T13:41:56.661351Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"5632e251-caa6-4770-9c85-bc30f04bc211","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:41:25.948310Z","description":"","frontend_count":0,"id":"6157e331-80eb-46f9-8809-63f8e4897906","instances":[{"created_at":"2023-06-29T12:52:04.694278Z","id":"b960f293-9c61-4fd2-96c8-e427148166bb","ip_address":"10.74.12.53","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:41:56.938239Z","zone":"fr-par-1"}],"ip":[{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":"6157e331-80eb-46f9-8809-63f8e4897906","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","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":"2023-06-29T13:41:28.434463Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["51.15.249.78"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:41:56.661351Z"}' + body: '{"created_at":"2023-07-03T20:01:18.871342Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"1325c853-6573-4807-b00e-281ce00d9cea","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:00:48.166694Z","description":"","frontend_count":0,"id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","instances":[{"created_at":"2023-07-03T19:59:54.663451Z","id":"9794a622-5f57-402f-b2d9-4a40c7fd1b74","ip_address":"10.64.86.5","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:01:18.896700Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:00:50.600039Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["51.15.249.78"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:01:18.871342Z"}' headers: Content-Length: - - "1952" + - "1897" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:41:57 GMT + - Mon, 03 Jul 2023 20:01:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -436,7 +436,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65b49a95-ab44-4a3c-bf74-1ddc7f6719f5 + - 42bc605c-4862-4a49-b929-250a05e8014c status: 200 OK code: 200 duration: "" @@ -447,19 +447,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6157e331-80eb-46f9-8809-63f8e4897906 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e813981a-c7f9-46fd-bc03-f638de4ba17c method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:41:25.948310Z","description":"","frontend_count":0,"id":"6157e331-80eb-46f9-8809-63f8e4897906","instances":[{"created_at":"2023-06-29T12:52:04.694278Z","id":"b960f293-9c61-4fd2-96c8-e427148166bb","ip_address":"10.74.12.53","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:41:56.938239Z","zone":"fr-par-1"}],"ip":[{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":"6157e331-80eb-46f9-8809-63f8e4897906","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","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":"2023-06-29T13:41:28.434463Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:00:48.166694Z","description":"","frontend_count":0,"id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","instances":[{"created_at":"2023-07-03T19:59:54.663451Z","id":"9794a622-5f57-402f-b2d9-4a40c7fd1b74","ip_address":"10.64.86.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:01:19.141156Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:00:50.600039Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1062" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:41:57 GMT + - Mon, 03 Jul 2023 20:01:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -469,7 +469,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 001d12f1-19d8-454b-a322-68710458d7b1 + - 698ef2d0-f5d6-4051-93e1-ad19d244262e status: 200 OK code: 200 duration: "" @@ -480,19 +480,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/5632e251-caa6-4770-9c85-bc30f04bc211 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/1325c853-6573-4807-b00e-281ce00d9cea method: GET response: - body: '{"created_at":"2023-06-29T13:41:56.661351Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"5632e251-caa6-4770-9c85-bc30f04bc211","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:41:25.948310Z","description":"","frontend_count":0,"id":"6157e331-80eb-46f9-8809-63f8e4897906","instances":[{"created_at":"2023-06-29T12:52:04.694278Z","id":"b960f293-9c61-4fd2-96c8-e427148166bb","ip_address":"10.74.12.53","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:41:56.938239Z","zone":"fr-par-1"}],"ip":[{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":"6157e331-80eb-46f9-8809-63f8e4897906","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","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":"2023-06-29T13:41:28.434463Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["51.15.249.78"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:41:56.661351Z"}' + body: '{"created_at":"2023-07-03T20:01:18.871342Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"1325c853-6573-4807-b00e-281ce00d9cea","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:00:48.166694Z","description":"","frontend_count":0,"id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","instances":[{"created_at":"2023-07-03T19:59:54.663451Z","id":"9794a622-5f57-402f-b2d9-4a40c7fd1b74","ip_address":"10.64.86.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:01:19.141156Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:00:50.600039Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["51.15.249.78"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:01:18.871342Z"}' headers: Content-Length: - - "1952" + - "1895" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:41:57 GMT + - Mon, 03 Jul 2023 20:01:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -502,7 +502,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f77c09a-5d04-40e2-bc5d-fb2992ea2e44 + - b403079b-9965-4017-a3a2-424c2ed283f5 status: 200 OK code: 200 duration: "" @@ -513,19 +513,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/91d21ba4-62a3-42ff-99c4-92dc90e6c24d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"ip":{"address":"51.15.249.78","id":"91d21ba4-62a3-42ff-99c4-92dc90e6c24d","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","prefix":null,"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null,"server":null,"state":"attached","tags":[],"type":"nat","zone":"fr-par-1"}}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "305" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:41:57 GMT + - Mon, 03 Jul 2023 20:01:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -535,7 +535,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e97339fc-5f5e-4de9-ae02-b9c45a36828b + - 5a68e92a-a25c-48ba-92d6-4203e681fcfc status: 200 OK code: 200 duration: "" @@ -546,19 +546,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/b72dd78a-c646-45bb-a1cc-69b23ca543db + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/91d21ba4-62a3-42ff-99c4-92dc90e6c24d method: GET response: - body: '{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":"6157e331-80eb-46f9-8809-63f8e4897906","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"ip":{"address":"51.15.249.78","id":"91d21ba4-62a3-42ff-99c4-92dc90e6c24d","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","prefix":null,"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null,"server":null,"state":"attached","tags":[],"type":"nat","zone":"fr-par-1"}}' headers: Content-Length: - - "321" + - "305" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:41:57 GMT + - Mon, 03 Jul 2023 20:01:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -568,7 +568,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 442b081a-128d-4798-994b-009460ea4004 + - b1ab2a19-0c56-4826-a805-80801aee923a status: 200 OK code: 200 duration: "" @@ -579,19 +579,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6157e331-80eb-46f9-8809-63f8e4897906 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e813981a-c7f9-46fd-bc03-f638de4ba17c method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:41:25.948310Z","description":"","frontend_count":0,"id":"6157e331-80eb-46f9-8809-63f8e4897906","instances":[{"created_at":"2023-06-29T12:52:04.694278Z","id":"b960f293-9c61-4fd2-96c8-e427148166bb","ip_address":"10.74.12.53","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:41:56.938239Z","zone":"fr-par-1"}],"ip":[{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":"6157e331-80eb-46f9-8809-63f8e4897906","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","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":"2023-06-29T13:41:28.434463Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:00:48.166694Z","description":"","frontend_count":0,"id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","instances":[{"created_at":"2023-07-03T19:59:54.663451Z","id":"9794a622-5f57-402f-b2d9-4a40c7fd1b74","ip_address":"10.64.86.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:01:19.141156Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:00:50.600039Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1062" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:41:57 GMT + - Mon, 03 Jul 2023 20:01:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -601,7 +601,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f59e45d0-9c8b-4653-bf50-d7782f368b38 + - 78b629e3-7b44-4a0f-b439-e945a43e4e5a status: 200 OK code: 200 duration: "" @@ -612,19 +612,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6157e331-80eb-46f9-8809-63f8e4897906 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e813981a-c7f9-46fd-bc03-f638de4ba17c method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:41:25.948310Z","description":"","frontend_count":0,"id":"6157e331-80eb-46f9-8809-63f8e4897906","instances":[{"created_at":"2023-06-29T12:52:04.694278Z","id":"b960f293-9c61-4fd2-96c8-e427148166bb","ip_address":"10.74.12.53","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:41:56.938239Z","zone":"fr-par-1"}],"ip":[{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":"6157e331-80eb-46f9-8809-63f8e4897906","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","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":"2023-06-29T13:41:28.434463Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:00:48.166694Z","description":"","frontend_count":0,"id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","instances":[{"created_at":"2023-07-03T19:59:54.663451Z","id":"9794a622-5f57-402f-b2d9-4a40c7fd1b74","ip_address":"10.64.86.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:01:19.141156Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:00:50.600039Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1062" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:41:57 GMT + - Mon, 03 Jul 2023 20:01:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -634,7 +634,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e216c168-5548-4cd7-afb4-b35778f8be39 + - 6e55248e-7cfc-4552-bcc1-1614ca663276 status: 200 OK code: 200 duration: "" @@ -645,19 +645,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6157e331-80eb-46f9-8809-63f8e4897906/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e813981a-c7f9-46fd-bc03-f638de4ba17c/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:41:58 GMT + - Mon, 03 Jul 2023 20:01:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -667,7 +667,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0837911d-474d-49ee-9ef8-73b04ea9ac43 + - f68adda4-7f9e-4e34-a0a9-d8cb847bdd31 status: 200 OK code: 200 duration: "" @@ -678,19 +678,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/5632e251-caa6-4770-9c85-bc30f04bc211 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/1325c853-6573-4807-b00e-281ce00d9cea method: GET response: - body: '{"created_at":"2023-06-29T13:41:56.661351Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"5632e251-caa6-4770-9c85-bc30f04bc211","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:41:25.948310Z","description":"","frontend_count":0,"id":"6157e331-80eb-46f9-8809-63f8e4897906","instances":[{"created_at":"2023-06-29T12:52:04.694278Z","id":"b960f293-9c61-4fd2-96c8-e427148166bb","ip_address":"10.74.12.53","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:41:56.938239Z","zone":"fr-par-1"}],"ip":[{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":"6157e331-80eb-46f9-8809-63f8e4897906","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","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":"2023-06-29T13:41:28.434463Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["51.15.249.78"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:41:56.661351Z"}' + body: '{"created_at":"2023-07-03T20:01:18.871342Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"1325c853-6573-4807-b00e-281ce00d9cea","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:00:48.166694Z","description":"","frontend_count":0,"id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","instances":[{"created_at":"2023-07-03T19:59:54.663451Z","id":"9794a622-5f57-402f-b2d9-4a40c7fd1b74","ip_address":"10.64.86.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:01:19.141156Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:00:50.600039Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["51.15.249.78"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:01:18.871342Z"}' headers: Content-Length: - - "1952" + - "1895" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:41:58 GMT + - Mon, 03 Jul 2023 20:01:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -700,7 +700,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0bd41ab7-1bbe-4dc5-baad-0fd8dfa77f60 + - b4f02423-422e-4e0a-9d3e-fc45a2702e4f status: 200 OK code: 200 duration: "" @@ -711,19 +711,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6157e331-80eb-46f9-8809-63f8e4897906 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e813981a-c7f9-46fd-bc03-f638de4ba17c method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:41:25.948310Z","description":"","frontend_count":0,"id":"6157e331-80eb-46f9-8809-63f8e4897906","instances":[{"created_at":"2023-06-29T12:52:04.694278Z","id":"b960f293-9c61-4fd2-96c8-e427148166bb","ip_address":"10.74.12.53","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:41:56.938239Z","zone":"fr-par-1"}],"ip":[{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":"6157e331-80eb-46f9-8809-63f8e4897906","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","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":"2023-06-29T13:41:28.434463Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:00:48.166694Z","description":"","frontend_count":0,"id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","instances":[{"created_at":"2023-07-03T19:59:54.663451Z","id":"9794a622-5f57-402f-b2d9-4a40c7fd1b74","ip_address":"10.64.86.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:01:19.141156Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:00:50.600039Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1062" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:41:58 GMT + - Mon, 03 Jul 2023 20:01:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -733,7 +733,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d1b52d4-99a9-46e8-83bc-b5df69777154 + - d7260be9-6d66-4e0a-b6ed-f904b044da62 status: 200 OK code: 200 duration: "" @@ -744,19 +744,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/b72dd78a-c646-45bb-a1cc-69b23ca543db + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":"6157e331-80eb-46f9-8809-63f8e4897906","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "321" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:41:58 GMT + - Mon, 03 Jul 2023 20:01:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -766,7 +766,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a29514e6-f7db-4ceb-9587-2ff028a9513a + - edac3a39-f05d-44b9-b77b-7d04e7830ed0 status: 200 OK code: 200 duration: "" @@ -789,7 +789,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:41:58 GMT + - Mon, 03 Jul 2023 20:01:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -799,7 +799,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 58775685-71bc-48d4-90f8-92e2d17b83eb + - 39dab16f-b8f2-41cb-9062-e6d41047c819 status: 200 OK code: 200 duration: "" @@ -810,19 +810,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6157e331-80eb-46f9-8809-63f8e4897906 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e813981a-c7f9-46fd-bc03-f638de4ba17c method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:41:25.948310Z","description":"","frontend_count":0,"id":"6157e331-80eb-46f9-8809-63f8e4897906","instances":[{"created_at":"2023-06-29T12:52:04.694278Z","id":"b960f293-9c61-4fd2-96c8-e427148166bb","ip_address":"10.74.12.53","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:41:56.938239Z","zone":"fr-par-1"}],"ip":[{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":"6157e331-80eb-46f9-8809-63f8e4897906","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","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":"2023-06-29T13:41:28.434463Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:00:48.166694Z","description":"","frontend_count":0,"id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","instances":[{"created_at":"2023-07-03T19:59:54.663451Z","id":"9794a622-5f57-402f-b2d9-4a40c7fd1b74","ip_address":"10.64.86.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:01:19.141156Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:00:50.600039Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1062" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:41:58 GMT + - Mon, 03 Jul 2023 20:01:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -832,7 +832,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4b9fa53-6e7d-4af4-aad0-25d0115fbe03 + - 0fb548fb-86c5-46f7-92d6-296e210c8556 status: 200 OK code: 200 duration: "" @@ -843,19 +843,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6157e331-80eb-46f9-8809-63f8e4897906 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e813981a-c7f9-46fd-bc03-f638de4ba17c method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:41:25.948310Z","description":"","frontend_count":0,"id":"6157e331-80eb-46f9-8809-63f8e4897906","instances":[{"created_at":"2023-06-29T12:52:04.694278Z","id":"b960f293-9c61-4fd2-96c8-e427148166bb","ip_address":"10.74.12.53","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:41:56.938239Z","zone":"fr-par-1"}],"ip":[{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":"6157e331-80eb-46f9-8809-63f8e4897906","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","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":"2023-06-29T13:41:28.434463Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:00:48.166694Z","description":"","frontend_count":0,"id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","instances":[{"created_at":"2023-07-03T19:59:54.663451Z","id":"9794a622-5f57-402f-b2d9-4a40c7fd1b74","ip_address":"10.64.86.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:01:19.141156Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:00:50.600039Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1062" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:41:58 GMT + - Mon, 03 Jul 2023 20:01:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -865,7 +865,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5dc5ea05-1f33-40af-8432-8673ad97bf73 + - 252fbcaf-e4e0-4249-a858-b9475703653f status: 200 OK code: 200 duration: "" @@ -876,19 +876,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6157e331-80eb-46f9-8809-63f8e4897906/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e813981a-c7f9-46fd-bc03-f638de4ba17c/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:41:58 GMT + - Mon, 03 Jul 2023 20:01:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -898,7 +898,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 674d4a85-8b18-4f30-9120-1a131ff0b064 + - 6f957563-c4e3-47a7-b192-ce7a5619b369 status: 200 OK code: 200 duration: "" @@ -909,19 +909,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/5632e251-caa6-4770-9c85-bc30f04bc211 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/1325c853-6573-4807-b00e-281ce00d9cea method: GET response: - body: '{"created_at":"2023-06-29T13:41:56.661351Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"5632e251-caa6-4770-9c85-bc30f04bc211","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:41:25.948310Z","description":"","frontend_count":0,"id":"6157e331-80eb-46f9-8809-63f8e4897906","instances":[{"created_at":"2023-06-29T12:52:04.694278Z","id":"b960f293-9c61-4fd2-96c8-e427148166bb","ip_address":"10.74.12.53","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:41:56.938239Z","zone":"fr-par-1"}],"ip":[{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":"6157e331-80eb-46f9-8809-63f8e4897906","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","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":"2023-06-29T13:41:28.434463Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["51.15.249.78"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:41:56.661351Z"}' + body: '{"created_at":"2023-07-03T20:01:18.871342Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"1325c853-6573-4807-b00e-281ce00d9cea","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:00:48.166694Z","description":"","frontend_count":0,"id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","instances":[{"created_at":"2023-07-03T19:59:54.663451Z","id":"9794a622-5f57-402f-b2d9-4a40c7fd1b74","ip_address":"10.64.86.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:01:19.141156Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:00:50.600039Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["51.15.249.78"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:01:18.871342Z"}' headers: Content-Length: - - "1952" + - "1895" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:41:58 GMT + - Mon, 03 Jul 2023 20:01:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -931,7 +931,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9f117ca-221b-4db0-ac77-9b15e0745313 + - 4e020f3e-a230-44bc-817e-550be4cd9423 status: 200 OK code: 200 duration: "" @@ -942,19 +942,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6157e331-80eb-46f9-8809-63f8e4897906 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e813981a-c7f9-46fd-bc03-f638de4ba17c method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:41:25.948310Z","description":"","frontend_count":0,"id":"6157e331-80eb-46f9-8809-63f8e4897906","instances":[{"created_at":"2023-06-29T12:52:04.694278Z","id":"b960f293-9c61-4fd2-96c8-e427148166bb","ip_address":"10.74.12.53","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:41:56.938239Z","zone":"fr-par-1"}],"ip":[{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":"6157e331-80eb-46f9-8809-63f8e4897906","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","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":"2023-06-29T13:41:28.434463Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:00:48.166694Z","description":"","frontend_count":0,"id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","instances":[{"created_at":"2023-07-03T19:59:54.663451Z","id":"9794a622-5f57-402f-b2d9-4a40c7fd1b74","ip_address":"10.64.86.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:01:19.141156Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:00:50.600039Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1062" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:41:58 GMT + - Mon, 03 Jul 2023 20:01:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -964,7 +964,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0251ecb6-f37f-43f6-99c9-22a50bfc0a8d + - 494ea38d-c727-44b7-a37e-dcd9286aa8a6 status: 200 OK code: 200 duration: "" @@ -975,7 +975,7 @@ interactions: Content-Length: - "150" User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) X-Amz-Acl: - public-read X-Amz-Bucket-Object-Lock-Enabled: @@ -983,8 +983,8 @@ interactions: X-Amz-Content-Sha256: - 2cb57fad7b7168921a4c94426cfcb9ee2953f126430595df844e22d50f029060 X-Amz-Date: - - 20230629T134159Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/ + - 20230703T200121Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/ method: PUT response: body: "" @@ -994,13 +994,13 @@ interactions: Content-Type: - text/html; charset=UTF-8 Date: - - Thu, 29 Jun 2023 13:42:00 GMT + - Mon, 03 Jul 2023 20:01:22 GMT Location: - - /tf-acc-test-6782315463416293422 + - /tf-acc-test-2148036807064013711 X-Amz-Id-2: - - tx1ca42fd8f16c45829c19a-00649d8a27 + - tx9e78be42ae2c487584e28-0064a32911 X-Amz-Request-Id: - - tx1ca42fd8f16c45829c19a-00649d8a27 + - tx9e78be42ae2c487584e28-0064a32911 status: 200 OK code: 200 duration: "" @@ -1013,12 +1013,12 @@ interactions: Content-Md5: - eYCKwSJBQsnx6u3/VsYcYA== User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) X-Amz-Content-Sha256: - 655f2c088fa2a707af6c87509c047218af33d567c6612780a7cb0ba7d2470640 X-Amz-Date: - - 20230629T134200Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/?tagging= + - 20230703T200122Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/?tagging= method: PUT response: body: "" @@ -1028,11 +1028,11 @@ interactions: Content-Type: - text/html; charset=UTF-8 Date: - - Thu, 29 Jun 2023 13:42:00 GMT + - Mon, 03 Jul 2023 20:01:22 GMT X-Amz-Id-2: - - txcc6e20bc25b64807b222e-00649d8a28 + - tx540915f21ed64c5488e58-0064a32912 X-Amz-Request-Id: - - txcc6e20bc25b64807b222e-00649d8a28 + - tx540915f21ed64c5488e58-0064a32912 status: 204 No Content code: 204 duration: "" @@ -1043,14 +1043,14 @@ interactions: Content-Md5: - 1B2M2Y8AsgTpgAmY7PhCfg== User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) X-Amz-Acl: - public-read X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230629T134200Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/?acl= + - 20230703T200122Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/?acl= method: PUT response: body: "" @@ -1060,11 +1060,11 @@ interactions: Content-Type: - text/html; charset=UTF-8 Date: - - Thu, 29 Jun 2023 13:42:00 GMT + - Mon, 03 Jul 2023 20:01:22 GMT X-Amz-Id-2: - - tx90aab385b11c4232b22de-00649d8a28 + - tx97e781c6eef74f4baaaa8-0064a32912 X-Amz-Request-Id: - - tx90aab385b11c4232b22de-00649d8a28 + - tx97e781c6eef74f4baaaa8-0064a32912 status: 200 OK code: 200 duration: "" @@ -1077,12 +1077,12 @@ interactions: Content-Md5: - eYCKwSJBQsnx6u3/VsYcYA== User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) X-Amz-Content-Sha256: - 655f2c088fa2a707af6c87509c047218af33d567c6612780a7cb0ba7d2470640 X-Amz-Date: - - 20230629T134200Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/?tagging= + - 20230703T200122Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/?tagging= method: PUT response: body: "" @@ -1092,11 +1092,11 @@ interactions: Content-Type: - text/html; charset=UTF-8 Date: - - Thu, 29 Jun 2023 13:42:00 GMT + - Mon, 03 Jul 2023 20:01:22 GMT X-Amz-Id-2: - - tx2bc776a68b744269bcf5a-00649d8a28 + - txdbbf761638544e1795ee1-0064a32912 X-Amz-Request-Id: - - tx2bc776a68b744269bcf5a-00649d8a28 + - txdbbf761638544e1795ee1-0064a32912 status: 204 No Content code: 204 duration: "" @@ -1105,12 +1105,12 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230629T134200Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/?acl= + - 20230703T200122Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/?acl= method: GET response: body: |- @@ -1122,11 +1122,11 @@ interactions: Content-Type: - text/html; charset=UTF-8 Date: - - Thu, 29 Jun 2023 13:42:00 GMT + - Mon, 03 Jul 2023 20:01:22 GMT X-Amz-Id-2: - - txbdd0daae7012492c933e2-00649d8a28 + - tx2566965216ec44ebb19da-0064a32912 X-Amz-Request-Id: - - txbdd0daae7012492c933e2-00649d8a28 + - tx2566965216ec44ebb19da-0064a32912 status: 200 OK code: 200 duration: "" @@ -1135,26 +1135,26 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230629T134200Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/?object-lock= + - 20230703T200122Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/?object-lock= method: GET response: body: |- - ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettx16e21512b5a546e7bc3de-00649d8a28 + ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettx163ba3dcbbce422fb17f6-0064a32912 headers: Content-Type: - application/xml Date: - - Thu, 29 Jun 2023 13:42:00 GMT + - Mon, 03 Jul 2023 20:01:22 GMT X-Amz-Id-2: - - tx16e21512b5a546e7bc3de-00649d8a28 + - tx163ba3dcbbce422fb17f6-0064a32912 X-Amz-Request-Id: - - tx16e21512b5a546e7bc3de-00649d8a28 + - tx163ba3dcbbce422fb17f6-0064a32912 status: 404 Not Found code: 404 duration: "" @@ -1163,28 +1163,28 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230629T134200Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/ + - 20230703T200122Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/ method: GET response: body: |- - tf-acc-test-67823154634162934221000false + tf-acc-test-21480368070640137111000false headers: Content-Length: - "253" Content-Type: - application/xml Date: - - Thu, 29 Jun 2023 13:42:01 GMT + - Mon, 03 Jul 2023 20:01:22 GMT X-Amz-Id-2: - - tx7bdea65a1b2e4698a329d-00649d8a28 + - tx6f200d8939724f508af3d-0064a32912 X-Amz-Request-Id: - - tx7bdea65a1b2e4698a329d-00649d8a28 + - tx6f200d8939724f508af3d-0064a32912 status: 200 OK code: 200 duration: "" @@ -1193,12 +1193,12 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230629T134201Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/?tagging= + - 20230703T200123Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/?tagging= method: GET response: body: TestNameTestAccSCW_WebsiteConfig_basic @@ -1208,11 +1208,11 @@ interactions: Content-Type: - application/xml Date: - - Thu, 29 Jun 2023 13:42:01 GMT + - Mon, 03 Jul 2023 20:01:23 GMT X-Amz-Id-2: - - txbc80ccd7281044bf96578-00649d8a29 + - txaf0edb92d9394b1886b93-0064a32913 X-Amz-Request-Id: - - txbc80ccd7281044bf96578-00649d8a29 + - txaf0edb92d9394b1886b93-0064a32913 status: 200 OK code: 200 duration: "" @@ -1221,26 +1221,26 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230629T134201Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/?cors= + - 20230703T200123Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/?cors= method: GET response: body: |- - NoSuchCORSConfigurationThe CORS configuration does not existtx0fb41722004841a6ae302-00649d8a29 + NoSuchCORSConfigurationThe CORS configuration does not existtx632088a2a92044c8aa026-0064a32913 headers: Content-Type: - application/xml Date: - - Thu, 29 Jun 2023 13:42:01 GMT + - Mon, 03 Jul 2023 20:01:23 GMT X-Amz-Id-2: - - tx0fb41722004841a6ae302-00649d8a29 + - tx632088a2a92044c8aa026-0064a32913 X-Amz-Request-Id: - - tx0fb41722004841a6ae302-00649d8a29 + - tx632088a2a92044c8aa026-0064a32913 status: 404 Not Found code: 404 duration: "" @@ -1249,12 +1249,12 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230629T134201Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/?versioning= + - 20230703T200123Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/?versioning= method: GET response: body: |- @@ -1266,11 +1266,11 @@ interactions: Content-Type: - text/plain Date: - - Thu, 29 Jun 2023 13:42:01 GMT + - Mon, 03 Jul 2023 20:01:23 GMT X-Amz-Id-2: - - tx7cbe8664d7a84cb2a36c9-00649d8a29 + - txd6620148e04a4141ab011-0064a32913 X-Amz-Request-Id: - - tx7cbe8664d7a84cb2a36c9-00649d8a29 + - txd6620148e04a4141ab011-0064a32913 status: 200 OK code: 200 duration: "" @@ -1279,26 +1279,26 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230629T134201Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/?lifecycle= + - 20230703T200123Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/?lifecycle= method: GET response: body: |- - NoSuchLifecycleConfigurationThe lifecycle configuration does not exist.txd26ca394d658485fbd0cf-00649d8a29 + NoSuchLifecycleConfigurationThe lifecycle configuration does not exist.tx8c97868045954d56b90e6-0064a32913 headers: Content-Type: - application/xml Date: - - Thu, 29 Jun 2023 13:42:01 GMT + - Mon, 03 Jul 2023 20:01:23 GMT X-Amz-Id-2: - - txd26ca394d658485fbd0cf-00649d8a29 + - tx8c97868045954d56b90e6-0064a32913 X-Amz-Request-Id: - - txd26ca394d658485fbd0cf-00649d8a29 + - tx8c97868045954d56b90e6-0064a32913 status: 404 Not Found code: 404 duration: "" @@ -1307,28 +1307,28 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230629T134201Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/ + - 20230703T200123Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/ method: GET response: body: |- - tf-acc-test-67823154634162934221000false + tf-acc-test-21480368070640137111000false headers: Content-Length: - "253" Content-Type: - application/xml Date: - - Thu, 29 Jun 2023 13:42:02 GMT + - Mon, 03 Jul 2023 20:01:23 GMT X-Amz-Id-2: - - tx9cd61f2916cd427cadee1-00649d8a29 + - txf5ec8ace43ff45388f624-0064a32913 X-Amz-Request-Id: - - tx9cd61f2916cd427cadee1-00649d8a29 + - txf5ec8ace43ff45388f624-0064a32913 status: 200 OK code: 200 duration: "" @@ -1341,12 +1341,12 @@ interactions: Content-Md5: - jf4PN/V8jGBeAbKh0T0OVw== User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) X-Amz-Content-Sha256: - 25bb7479fc4f8d34ec53069866ce65e1010fa7985d926d400dad59bd013d82b6 X-Amz-Date: - - 20230629T134202Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/?website= + - 20230703T200123Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/?website= method: PUT response: body: "" @@ -1356,11 +1356,11 @@ interactions: Content-Type: - text/html; charset=UTF-8 Date: - - Thu, 29 Jun 2023 13:42:02 GMT + - Mon, 03 Jul 2023 20:01:23 GMT X-Amz-Id-2: - - txcec8dd33165f4f9ba8460-00649d8a2a + - tx059a2f6c6c1147a7b2ed5-0064a32913 X-Amz-Request-Id: - - txcec8dd33165f4f9ba8460-00649d8a2a + - tx059a2f6c6c1147a7b2ed5-0064a32913 status: 204 No Content code: 204 duration: "" @@ -1369,28 +1369,28 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230629T134202Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/ + - 20230703T200123Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/ method: GET response: body: |- - tf-acc-test-67823154634162934221000false + tf-acc-test-21480368070640137111000false headers: Content-Length: - "253" Content-Type: - application/xml Date: - - Thu, 29 Jun 2023 13:42:02 GMT + - Mon, 03 Jul 2023 20:01:23 GMT X-Amz-Id-2: - - txa739234ecf944a79a7e94-00649d8a2a + - tx6a3f441141d94ff19716f-0064a32913 X-Amz-Request-Id: - - txa739234ecf944a79a7e94-00649d8a2a + - tx6a3f441141d94ff19716f-0064a32913 status: 200 OK code: 200 duration: "" @@ -1399,12 +1399,12 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230629T134202Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/?website= + - 20230703T200123Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/?website= method: GET response: body: error.htmlindex.html @@ -1414,11 +1414,41 @@ interactions: Content-Type: - application/xml Date: - - Thu, 29 Jun 2023 13:42:02 GMT + - Mon, 03 Jul 2023 20:01:23 GMT + X-Amz-Id-2: + - tx2e756e827b5a451197845-0064a32913 + X-Amz-Request-Id: + - tx2e756e827b5a451197845-0064a32913 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20230703T200123Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/?acl= + method: GET + response: + body: |- + + 564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5:564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5:564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5http://acs.amazonaws.com/groups/global/AllUsersREAD564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5:564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5:564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5FULL_CONTROL + headers: + Content-Length: + - "890" + Content-Type: + - text/html; charset=UTF-8 + Date: + - Mon, 03 Jul 2023 20:01:23 GMT X-Amz-Id-2: - - tx231bfed31ba74a64afe86-00649d8a2a + - tx07f1fe79976b48d184465-0064a32913 X-Amz-Request-Id: - - tx231bfed31ba74a64afe86-00649d8a2a + - tx07f1fe79976b48d184465-0064a32913 status: 200 OK code: 200 duration: "" @@ -1443,14 +1473,14 @@ interactions: Content-Md5: - 0MYwWlrDqyue0NCAxhGhbQ== User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) X-Amz-Acl: - public-read X-Amz-Content-Sha256: - 4002bedde06755af91eafa383654925b3e2a9c575fd42cacdcd21494141690f3 X-Amz-Date: - - 20230629T134201Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/index.html + - 20230703T200123Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/index.html method: PUT response: body: "" @@ -1460,17 +1490,17 @@ interactions: Content-Type: - text/html; charset=UTF-8 Date: - - Thu, 29 Jun 2023 13:42:02 GMT + - Mon, 03 Jul 2023 20:01:23 GMT Etag: - '"d0c6305a5ac3ab2b9ed0d080c611a16d"' Last-Modified: - - Thu, 29 Jun 2023 13:42:02 GMT + - Mon, 03 Jul 2023 20:01:23 GMT X-Amz-Id-2: - - tx3a707ddff2a94d06a6c38-00649d8a29 + - txc9bd6afe24ee4882b41c5-0064a32913 X-Amz-Request-Id: - - tx3a707ddff2a94d06a6c38-00649d8a29 + - txc9bd6afe24ee4882b41c5-0064a32913 X-Amz-Version-Id: - - "1688046122274818" + - "1688414483344413" status: 200 OK code: 200 duration: "" @@ -1479,28 +1509,31 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20230629T134202Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/?acl= + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e813981a-c7f9-46fd-bc03-f638de4ba17c method: GET response: - body: |- - - 564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5:564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5:564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5http://acs.amazonaws.com/groups/global/AllUsersREAD564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5:564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5:564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5FULL_CONTROL + body: '{"backend_count":1,"created_at":"2023-07-03T20:00:48.166694Z","description":"","frontend_count":0,"id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","instances":[{"created_at":"2023-07-03T19:59:54.663451Z","id":"9794a622-5f57-402f-b2d9-4a40c7fd1b74","ip_address":"10.64.86.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:01:19.141156Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:00:50.600039Z","zone":"fr-par-1"}' headers: Content-Length: - - "890" + - "1062" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' Content-Type: - - text/html; charset=UTF-8 + - application/json Date: - - Thu, 29 Jun 2023 13:42:02 GMT - X-Amz-Id-2: - - tx5af4d3769cbf4bac956b9-00649d8a2a - X-Amz-Request-Id: - - tx5af4d3769cbf4bac956b9-00649d8a2a + - Mon, 03 Jul 2023 20:01:23 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 02d3cc2a-b439-4c4d-bd35-a1ef46d53c68 status: 200 OK code: 200 duration: "" @@ -1509,12 +1542,12 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230629T134202Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/index.html + - 20230703T200123Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/index.html method: HEAD response: body: "" @@ -1526,50 +1559,17 @@ interactions: Content-Type: - text/html Date: - - Thu, 29 Jun 2023 13:42:02 GMT + - Mon, 03 Jul 2023 20:01:23 GMT Etag: - '"d0c6305a5ac3ab2b9ed0d080c611a16d"' Last-Modified: - - Thu, 29 Jun 2023 13:42:02 GMT + - Mon, 03 Jul 2023 20:01:23 GMT X-Amz-Id-2: - - tx84fcb1a23e9a47f9a0e86-00649d8a2a + - txc2bedfdcc3b24aeca2f37-0064a32913 X-Amz-Request-Id: - - tx84fcb1a23e9a47f9a0e86-00649d8a2a + - txc2bedfdcc3b24aeca2f37-0064a32913 X-Amz-Version-Id: - - "1688046122274818" - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6157e331-80eb-46f9-8809-63f8e4897906 - method: GET - response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:41:25.948310Z","description":"","frontend_count":0,"id":"6157e331-80eb-46f9-8809-63f8e4897906","instances":[{"created_at":"2023-06-29T12:52:04.694278Z","id":"b960f293-9c61-4fd2-96c8-e427148166bb","ip_address":"10.74.12.53","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:41:56.938239Z","zone":"fr-par-1"}],"ip":[{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":"6157e331-80eb-46f9-8809-63f8e4897906","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","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":"2023-06-29T13:41:28.434463Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "1093" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 29 Jun 2023 13:42:02 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d66a5ee9-ef5f-49b9-9f95-1e9a46bcae3f + - "1688414483344413" status: 200 OK code: 200 duration: "" @@ -1578,12 +1578,12 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230629T134202Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/index.html?tagging= + - 20230703T200123Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/index.html?tagging= method: GET response: body: |- @@ -1595,13 +1595,13 @@ interactions: Content-Type: - application/xml Date: - - Thu, 29 Jun 2023 13:42:02 GMT + - Mon, 03 Jul 2023 20:01:23 GMT X-Amz-Id-2: - - tx55518c2c350842298bff6-00649d8a2a + - tx0a8564abe98b49bc8697c-0064a32913 X-Amz-Request-Id: - - tx55518c2c350842298bff6-00649d8a2a + - tx0a8564abe98b49bc8697c-0064a32913 X-Amz-Version-Id: - - "1688046122274818" + - "1688414483344413" status: 200 OK code: 200 duration: "" @@ -1610,12 +1610,12 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230629T134202Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/index.html?acl= + - 20230703T200123Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/index.html?acl= method: GET response: body: |- @@ -1627,16 +1627,16 @@ interactions: Content-Type: - text/html; charset=UTF-8 Date: - - Thu, 29 Jun 2023 13:42:02 GMT + - Mon, 03 Jul 2023 20:01:23 GMT X-Amz-Id-2: - - tx9b4a5ae5b38b4f39a7e25-00649d8a2a + - tx3c0e8badb7dd4817a4933-0064a32913 X-Amz-Request-Id: - - tx9b4a5ae5b38b4f39a7e25-00649d8a2a + - tx3c0e8badb7dd4817a4933-0064a32913 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"bkd01","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","send_proxy_v2":false,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":"tf-acc-test-6782315463416293422.s3-website.fr-par.scw.cloud","ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":0,"max_retries":3,"max_connections":0,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' + body: '{"name":"bkd01","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","send_proxy_v2":false,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":"tf-acc-test-2148036807064013711.s3-website.fr-par.scw.cloud","ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":0,"max_retries":3,"max_connections":0,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' form: {} headers: Content-Type: @@ -1644,19 +1644,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/5632e251-caa6-4770-9c85-bc30f04bc211 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/1325c853-6573-4807-b00e-281ce00d9cea method: PUT response: - body: '{"created_at":"2023-06-29T13:41:56.661351Z","failover_host":"tf-acc-test-6782315463416293422.s3-website.fr-par.scw.cloud","forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"5632e251-caa6-4770-9c85-bc30f04bc211","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:41:25.948310Z","description":"","frontend_count":0,"id":"6157e331-80eb-46f9-8809-63f8e4897906","instances":[{"created_at":"2023-06-29T12:52:04.694278Z","id":"b960f293-9c61-4fd2-96c8-e427148166bb","ip_address":"10.74.12.53","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:41:56.938239Z","zone":"fr-par-1"}],"ip":[{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":"6157e331-80eb-46f9-8809-63f8e4897906","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","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":"2023-06-29T13:41:28.434463Z","zone":"fr-par-1"},"max_connections":0,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["51.15.249.78"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":0,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:42:03.128357493Z"}' + body: '{"created_at":"2023-07-03T20:01:18.871342Z","failover_host":"tf-acc-test-2148036807064013711.s3-website.fr-par.scw.cloud","forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"1325c853-6573-4807-b00e-281ce00d9cea","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:00:48.166694Z","description":"","frontend_count":0,"id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","instances":[{"created_at":"2023-07-03T19:59:54.663451Z","id":"9794a622-5f57-402f-b2d9-4a40c7fd1b74","ip_address":"10.64.86.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:01:19.141156Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:00:50.600039Z","zone":"fr-par-1"},"max_connections":0,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["51.15.249.78"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":0,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:01:24.026085423Z"}' headers: Content-Length: - - "2006" + - "1949" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:42:03 GMT + - Mon, 03 Jul 2023 20:01:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1666,12 +1666,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3f3a6b13-dd06-473d-8c89-6bbf7bd8f97f + - 4446e9f0-622c-4a46-9625-131ee1f2e387 status: 200 OK code: 200 duration: "" - request: - body: '{"port":80,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{},"transient_check_delay":null,"check_delay":60000,"check_timeout":30000}' + body: '{"port":80,"check_max_retries":2,"check_send_proxy":false,"tcp_config":{},"transient_check_delay":"0.500000000s","check_delay":60000,"check_timeout":30000}' form: {} headers: Content-Type: @@ -1679,19 +1679,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/5632e251-caa6-4770-9c85-bc30f04bc211/healthcheck + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/1325c853-6573-4807-b00e-281ce00d9cea/healthcheck method: PUT response: - body: '{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null}' + body: '{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"}' headers: Content-Length: - - "151" + - "149" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:42:03 GMT + - Mon, 03 Jul 2023 20:01:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1701,7 +1701,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc7f1613-55cd-4358-a176-91ab556e2a5e + - ddc85bbc-d3d8-4ccb-b57d-9eeac37947fd status: 200 OK code: 200 duration: "" @@ -1714,19 +1714,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/5632e251-caa6-4770-9c85-bc30f04bc211/servers + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/1325c853-6573-4807-b00e-281ce00d9cea/servers method: PUT response: - body: '{"created_at":"2023-06-29T13:41:56.661351Z","failover_host":"tf-acc-test-6782315463416293422.s3-website.fr-par.scw.cloud","forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"5632e251-caa6-4770-9c85-bc30f04bc211","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:41:25.948310Z","description":"","frontend_count":0,"id":"6157e331-80eb-46f9-8809-63f8e4897906","instances":[{"created_at":"2023-06-29T12:52:04.694278Z","id":"b960f293-9c61-4fd2-96c8-e427148166bb","ip_address":"10.74.12.53","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:42:03.415956Z","zone":"fr-par-1"}],"ip":[{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":"6157e331-80eb-46f9-8809-63f8e4897906","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","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":"2023-06-29T13:41:28.434463Z","zone":"fr-par-1"},"max_connections":0,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["51.15.249.78"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":0,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:42:03.128357Z"}' + body: '{"created_at":"2023-07-03T20:01:18.871342Z","failover_host":"tf-acc-test-2148036807064013711.s3-website.fr-par.scw.cloud","forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"1325c853-6573-4807-b00e-281ce00d9cea","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:00:48.166694Z","description":"","frontend_count":0,"id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","instances":[{"created_at":"2023-07-03T19:59:54.663451Z","id":"9794a622-5f57-402f-b2d9-4a40c7fd1b74","ip_address":"10.64.86.5","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:01:24.423828Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:00:50.600039Z","zone":"fr-par-1"},"max_connections":0,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["51.15.249.78"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":0,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:01:24.026085Z"}' headers: Content-Length: - - "2003" + - "1948" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:42:03 GMT + - Mon, 03 Jul 2023 20:01:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1736,7 +1736,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e68dddcb-a432-438d-be8f-cd09cb941667 + - 5ed92f17-4345-40a6-8029-b0733dd2a70d status: 200 OK code: 200 duration: "" @@ -1747,19 +1747,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6157e331-80eb-46f9-8809-63f8e4897906 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e813981a-c7f9-46fd-bc03-f638de4ba17c method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:41:25.948310Z","description":"","frontend_count":0,"id":"6157e331-80eb-46f9-8809-63f8e4897906","instances":[{"created_at":"2023-06-29T12:52:04.694278Z","id":"b960f293-9c61-4fd2-96c8-e427148166bb","ip_address":"10.74.12.53","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:42:03.415956Z","zone":"fr-par-1"}],"ip":[{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":"6157e331-80eb-46f9-8809-63f8e4897906","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","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":"2023-06-29T13:41:28.434463Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:00:48.166694Z","description":"","frontend_count":0,"id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","instances":[{"created_at":"2023-07-03T19:59:54.663451Z","id":"9794a622-5f57-402f-b2d9-4a40c7fd1b74","ip_address":"10.64.86.5","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:01:24.423828Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:00:50.600039Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:42:03 GMT + - Mon, 03 Jul 2023 20:01:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1769,7 +1769,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 249674d3-17fc-469b-a8b3-157c92364456 + - 80cef245-ed8a-4895-ba5f-236c262e484c status: 200 OK code: 200 duration: "" @@ -1780,19 +1780,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/5632e251-caa6-4770-9c85-bc30f04bc211 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/1325c853-6573-4807-b00e-281ce00d9cea method: GET response: - body: '{"created_at":"2023-06-29T13:41:56.661351Z","failover_host":"tf-acc-test-6782315463416293422.s3-website.fr-par.scw.cloud","forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"5632e251-caa6-4770-9c85-bc30f04bc211","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:41:25.948310Z","description":"","frontend_count":0,"id":"6157e331-80eb-46f9-8809-63f8e4897906","instances":[{"created_at":"2023-06-29T12:52:04.694278Z","id":"b960f293-9c61-4fd2-96c8-e427148166bb","ip_address":"10.74.12.53","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:42:03.704837Z","zone":"fr-par-1"}],"ip":[{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":"6157e331-80eb-46f9-8809-63f8e4897906","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","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":"2023-06-29T13:41:28.434463Z","zone":"fr-par-1"},"max_connections":0,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["51.15.249.78"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":0,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:42:03.128357Z"}' + body: '{"created_at":"2023-07-03T20:01:18.871342Z","failover_host":"tf-acc-test-2148036807064013711.s3-website.fr-par.scw.cloud","forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"1325c853-6573-4807-b00e-281ce00d9cea","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:00:48.166694Z","description":"","frontend_count":0,"id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","instances":[{"created_at":"2023-07-03T19:59:54.663451Z","id":"9794a622-5f57-402f-b2d9-4a40c7fd1b74","ip_address":"10.64.86.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:01:24.691110Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:00:50.600039Z","zone":"fr-par-1"},"max_connections":0,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["51.15.249.78"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":0,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:01:24.026085Z"}' headers: Content-Length: - - "2003" + - "1946" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:42:03 GMT + - Mon, 03 Jul 2023 20:01:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1802,7 +1802,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 688cee4a-dd73-434a-b7ea-13b22034b1ea + - d3f7ab86-efbd-4b5e-933c-8249d4631dc2 status: 200 OK code: 200 duration: "" @@ -1813,19 +1813,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6157e331-80eb-46f9-8809-63f8e4897906 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e813981a-c7f9-46fd-bc03-f638de4ba17c method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:41:25.948310Z","description":"","frontend_count":0,"id":"6157e331-80eb-46f9-8809-63f8e4897906","instances":[{"created_at":"2023-06-29T12:52:04.694278Z","id":"b960f293-9c61-4fd2-96c8-e427148166bb","ip_address":"10.74.12.53","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:42:03.704837Z","zone":"fr-par-1"}],"ip":[{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":"6157e331-80eb-46f9-8809-63f8e4897906","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","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":"2023-06-29T13:41:28.434463Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:00:48.166694Z","description":"","frontend_count":0,"id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","instances":[{"created_at":"2023-07-03T19:59:54.663451Z","id":"9794a622-5f57-402f-b2d9-4a40c7fd1b74","ip_address":"10.64.86.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:01:24.691110Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:00:50.600039Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1062" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:42:03 GMT + - Mon, 03 Jul 2023 20:01:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1835,7 +1835,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7e5f513-9e70-4b9d-964e-4dd649e3e14e + - 6e3d6a8c-e613-4bee-b3b7-f4014769bc10 status: 200 OK code: 200 duration: "" @@ -1844,12 +1844,12 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230629T134203Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/?website= + - 20230703T200124Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/?website= method: GET response: body: error.htmlindex.html @@ -1859,11 +1859,11 @@ interactions: Content-Type: - application/xml Date: - - Thu, 29 Jun 2023 13:42:04 GMT + - Mon, 03 Jul 2023 20:01:25 GMT X-Amz-Id-2: - - tx3bdf1f8f61794428b62ba-00649d8a2b + - tx38b82996d611466b8095f-0064a32914 X-Amz-Request-Id: - - tx3bdf1f8f61794428b62ba-00649d8a2b + - tx38b82996d611466b8095f-0064a32914 status: 200 OK code: 200 duration: "" @@ -1874,19 +1874,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/5632e251-caa6-4770-9c85-bc30f04bc211 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/1325c853-6573-4807-b00e-281ce00d9cea method: GET response: - body: '{"created_at":"2023-06-29T13:41:56.661351Z","failover_host":"tf-acc-test-6782315463416293422.s3-website.fr-par.scw.cloud","forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"5632e251-caa6-4770-9c85-bc30f04bc211","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:41:25.948310Z","description":"","frontend_count":0,"id":"6157e331-80eb-46f9-8809-63f8e4897906","instances":[{"created_at":"2023-06-29T12:52:04.694278Z","id":"b960f293-9c61-4fd2-96c8-e427148166bb","ip_address":"10.74.12.53","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:42:03.704837Z","zone":"fr-par-1"}],"ip":[{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":"6157e331-80eb-46f9-8809-63f8e4897906","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","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":"2023-06-29T13:41:28.434463Z","zone":"fr-par-1"},"max_connections":0,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["51.15.249.78"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":0,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:42:03.128357Z"}' + body: '{"created_at":"2023-07-03T20:01:18.871342Z","failover_host":"tf-acc-test-2148036807064013711.s3-website.fr-par.scw.cloud","forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"1325c853-6573-4807-b00e-281ce00d9cea","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:00:48.166694Z","description":"","frontend_count":0,"id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","instances":[{"created_at":"2023-07-03T19:59:54.663451Z","id":"9794a622-5f57-402f-b2d9-4a40c7fd1b74","ip_address":"10.64.86.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:01:24.691110Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:00:50.600039Z","zone":"fr-par-1"},"max_connections":0,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["51.15.249.78"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":0,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:01:24.026085Z"}' headers: Content-Length: - - "2003" + - "1946" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:42:04 GMT + - Mon, 03 Jul 2023 20:01:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1896,7 +1896,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2fb45dc-cfd7-4caf-b2a9-c1e4ed77a51e + - 60c14de4-3b65-459c-853e-61d4f9aedeb5 status: 200 OK code: 200 duration: "" @@ -1907,19 +1907,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/b72dd78a-c646-45bb-a1cc-69b23ca543db + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":"6157e331-80eb-46f9-8809-63f8e4897906","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "321" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:42:04 GMT + - Mon, 03 Jul 2023 20:01:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1929,7 +1929,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4dd6c399-364a-4165-8f47-c03cc65cc3bc + - 19463278-2dee-45bc-8773-7c4fe4c6abc0 status: 200 OK code: 200 duration: "" @@ -1952,7 +1952,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:42:04 GMT + - Mon, 03 Jul 2023 20:01:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1962,7 +1962,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3e47b2f-d0a6-43db-9607-626f2cbdcf94 + - 864fcf60-6b27-4012-9eee-23c59df42f08 status: 200 OK code: 200 duration: "" @@ -1971,12 +1971,12 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230629T134204Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/?acl= + - 20230703T200125Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/?acl= method: GET response: body: |- @@ -1988,11 +1988,11 @@ interactions: Content-Type: - text/html; charset=UTF-8 Date: - - Thu, 29 Jun 2023 13:42:04 GMT + - Mon, 03 Jul 2023 20:01:25 GMT X-Amz-Id-2: - - tx3c6209213bc8445ca35bb-00649d8a2c + - tx48abf26866e14b1993aac-0064a32915 X-Amz-Request-Id: - - tx3c6209213bc8445ca35bb-00649d8a2c + - tx48abf26866e14b1993aac-0064a32915 status: 200 OK code: 200 duration: "" @@ -2003,19 +2003,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6157e331-80eb-46f9-8809-63f8e4897906 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e813981a-c7f9-46fd-bc03-f638de4ba17c method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:41:25.948310Z","description":"","frontend_count":0,"id":"6157e331-80eb-46f9-8809-63f8e4897906","instances":[{"created_at":"2023-06-29T12:52:04.694278Z","id":"b960f293-9c61-4fd2-96c8-e427148166bb","ip_address":"10.74.12.53","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:42:03.704837Z","zone":"fr-par-1"}],"ip":[{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":"6157e331-80eb-46f9-8809-63f8e4897906","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","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":"2023-06-29T13:41:28.434463Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:00:48.166694Z","description":"","frontend_count":0,"id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","instances":[{"created_at":"2023-07-03T19:59:54.663451Z","id":"9794a622-5f57-402f-b2d9-4a40c7fd1b74","ip_address":"10.64.86.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:01:24.691110Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:00:50.600039Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1062" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:42:04 GMT + - Mon, 03 Jul 2023 20:01:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2025,10 +2025,38 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4994715b-c565-4db4-8908-5b47d7f0f0ce + - d9e148ab-428b-472f-a83c-f93d01a1271d status: 200 OK code: 200 duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20230703T200125Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/?object-lock= + method: GET + response: + body: |- + + ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettx987bb51b7a76465e895aa-0064a32915 + headers: + Content-Type: + - application/xml + Date: + - Mon, 03 Jul 2023 20:01:25 GMT + X-Amz-Id-2: + - tx987bb51b7a76465e895aa-0064a32915 + X-Amz-Request-Id: + - tx987bb51b7a76465e895aa-0064a32915 + status: 404 Not Found + code: 404 + duration: "" - request: body: "" form: {} @@ -2036,19 +2064,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6157e331-80eb-46f9-8809-63f8e4897906 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e813981a-c7f9-46fd-bc03-f638de4ba17c method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:41:25.948310Z","description":"","frontend_count":0,"id":"6157e331-80eb-46f9-8809-63f8e4897906","instances":[{"created_at":"2023-06-29T12:52:04.694278Z","id":"b960f293-9c61-4fd2-96c8-e427148166bb","ip_address":"10.74.12.53","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:42:03.704837Z","zone":"fr-par-1"}],"ip":[{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":"6157e331-80eb-46f9-8809-63f8e4897906","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","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":"2023-06-29T13:41:28.434463Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:00:48.166694Z","description":"","frontend_count":0,"id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","instances":[{"created_at":"2023-07-03T19:59:54.663451Z","id":"9794a622-5f57-402f-b2d9-4a40c7fd1b74","ip_address":"10.64.86.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:01:24.691110Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:00:50.600039Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1062" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:42:04 GMT + - Mon, 03 Jul 2023 20:01:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2058,38 +2086,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ebd33be7-874b-40fb-8ebd-95e13b617196 + - 8ceaad0e-cbb6-4bb3-92d8-81f89af221c7 status: 200 OK code: 200 duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20230629T134204Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/?object-lock= - method: GET - response: - body: |- - - ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettx8e7d018af66b4616ab716-00649d8a2c - headers: - Content-Type: - - application/xml - Date: - - Thu, 29 Jun 2023 13:42:04 GMT - X-Amz-Id-2: - - tx8e7d018af66b4616ab716-00649d8a2c - X-Amz-Request-Id: - - tx8e7d018af66b4616ab716-00649d8a2c - status: 404 Not Found - code: 404 - duration: "" - request: body: "" form: {} @@ -2097,19 +2097,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6157e331-80eb-46f9-8809-63f8e4897906/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e813981a-c7f9-46fd-bc03-f638de4ba17c/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:42:04 GMT + - Mon, 03 Jul 2023 20:01:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2119,7 +2119,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc41d7f5-6395-4027-b1af-2dabc3054b16 + - e4086049-341e-48b4-86c6-7a635d330189 status: 200 OK code: 200 duration: "" @@ -2128,28 +2128,28 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230629T134204Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/ + - 20230703T200125Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/ method: GET response: body: |- - tf-acc-test-67823154634162934221000false"d0c6305a5ac3ab2b9ed0d080c611a16d"index.html2023-06-29T13:42:02.000Z189STANDARD564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5:564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5:564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5 + tf-acc-test-21480368070640137111000false"d0c6305a5ac3ab2b9ed0d080c611a16d"index.html2023-07-03T20:01:23.000Z189STANDARD564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5:564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5:564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5 headers: Content-Length: - "645" Content-Type: - application/xml Date: - - Thu, 29 Jun 2023 13:42:04 GMT + - Mon, 03 Jul 2023 20:01:25 GMT X-Amz-Id-2: - - tx25005861cae54cd090f38-00649d8a2c + - tx07efa7a590064db481514-0064a32915 X-Amz-Request-Id: - - tx25005861cae54cd090f38-00649d8a2c + - tx07efa7a590064db481514-0064a32915 status: 200 OK code: 200 duration: "" @@ -2158,12 +2158,12 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230629T134204Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/?tagging= + - 20230703T200125Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/?tagging= method: GET response: body: TestNameTestAccSCW_WebsiteConfig_basic @@ -2173,11 +2173,11 @@ interactions: Content-Type: - application/xml Date: - - Thu, 29 Jun 2023 13:42:05 GMT + - Mon, 03 Jul 2023 20:01:25 GMT X-Amz-Id-2: - - tx713d599583bc49be9f578-00649d8a2c + - txfd8876b2f3004a82964fb-0064a32915 X-Amz-Request-Id: - - tx713d599583bc49be9f578-00649d8a2c + - txfd8876b2f3004a82964fb-0064a32915 status: 200 OK code: 200 duration: "" @@ -2186,26 +2186,26 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230629T134204Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/?cors= + - 20230703T200125Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/?cors= method: GET response: body: |- - NoSuchCORSConfigurationThe CORS configuration does not existtx134ccc396aa74860802d8-00649d8a2d + NoSuchCORSConfigurationThe CORS configuration does not existtx4d00855c6971491bb6dbd-0064a32915 headers: Content-Type: - application/xml Date: - - Thu, 29 Jun 2023 13:42:05 GMT + - Mon, 03 Jul 2023 20:01:25 GMT X-Amz-Id-2: - - tx134ccc396aa74860802d8-00649d8a2d + - tx4d00855c6971491bb6dbd-0064a32915 X-Amz-Request-Id: - - tx134ccc396aa74860802d8-00649d8a2d + - tx4d00855c6971491bb6dbd-0064a32915 status: 404 Not Found code: 404 duration: "" @@ -2214,12 +2214,12 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230629T134205Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/?versioning= + - 20230703T200125Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/?versioning= method: GET response: body: |- @@ -2231,11 +2231,11 @@ interactions: Content-Type: - text/plain Date: - - Thu, 29 Jun 2023 13:42:05 GMT + - Mon, 03 Jul 2023 20:01:25 GMT X-Amz-Id-2: - - tx97c204af094648d486ba0-00649d8a2d + - txa788a1e7c1794ef990e2c-0064a32915 X-Amz-Request-Id: - - tx97c204af094648d486ba0-00649d8a2d + - txa788a1e7c1794ef990e2c-0064a32915 status: 200 OK code: 200 duration: "" @@ -2244,26 +2244,26 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230629T134205Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/?lifecycle= + - 20230703T200125Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/?lifecycle= method: GET response: body: |- - NoSuchLifecycleConfigurationThe lifecycle configuration does not exist.txc09079a1e549488abb117-00649d8a2d + NoSuchLifecycleConfigurationThe lifecycle configuration does not exist.tx2bd5b1f217da43b58982b-0064a32915 headers: Content-Type: - application/xml Date: - - Thu, 29 Jun 2023 13:42:05 GMT + - Mon, 03 Jul 2023 20:01:26 GMT X-Amz-Id-2: - - txc09079a1e549488abb117-00649d8a2d + - tx2bd5b1f217da43b58982b-0064a32915 X-Amz-Request-Id: - - txc09079a1e549488abb117-00649d8a2d + - tx2bd5b1f217da43b58982b-0064a32915 status: 404 Not Found code: 404 duration: "" @@ -2272,12 +2272,12 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230629T134205Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/index.html + - 20230703T200126Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/index.html method: HEAD response: body: "" @@ -2289,17 +2289,17 @@ interactions: Content-Type: - text/html Date: - - Thu, 29 Jun 2023 13:42:05 GMT + - Mon, 03 Jul 2023 20:01:26 GMT Etag: - '"d0c6305a5ac3ab2b9ed0d080c611a16d"' Last-Modified: - - Thu, 29 Jun 2023 13:42:02 GMT + - Mon, 03 Jul 2023 20:01:23 GMT X-Amz-Id-2: - - tx056be1f4b2c0410c98254-00649d8a2d + - tx7814e29e5bc04671ad4e0-0064a32916 X-Amz-Request-Id: - - tx056be1f4b2c0410c98254-00649d8a2d + - tx7814e29e5bc04671ad4e0-0064a32916 X-Amz-Version-Id: - - "1688046122274818" + - "1688414483344413" status: 200 OK code: 200 duration: "" @@ -2308,28 +2308,30 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230629T134205Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/ + - 20230703T200126Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/index.html?tagging= method: GET response: body: |- - tf-acc-test-67823154634162934221000false"d0c6305a5ac3ab2b9ed0d080c611a16d"index.html2023-06-29T13:42:02.000Z189STANDARD564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5:564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5:564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5 + headers: Content-Length: - - "645" + - "115" Content-Type: - application/xml Date: - - Thu, 29 Jun 2023 13:42:05 GMT + - Mon, 03 Jul 2023 20:01:26 GMT X-Amz-Id-2: - - tx4997b8c0a5c948d8ab834-00649d8a2d + - tx575f65b451fa4ff991548-0064a32916 X-Amz-Request-Id: - - tx4997b8c0a5c948d8ab834-00649d8a2d + - tx575f65b451fa4ff991548-0064a32916 + X-Amz-Version-Id: + - "1688414483344413" status: 200 OK code: 200 duration: "" @@ -2338,30 +2340,28 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230629T134205Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/index.html?tagging= + - 20230703T200126Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/ method: GET response: body: |- - + tf-acc-test-21480368070640137111000false"d0c6305a5ac3ab2b9ed0d080c611a16d"index.html2023-07-03T20:01:23.000Z189STANDARD564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5:564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5:564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5 headers: Content-Length: - - "115" + - "645" Content-Type: - application/xml Date: - - Thu, 29 Jun 2023 13:42:05 GMT + - Mon, 03 Jul 2023 20:01:26 GMT X-Amz-Id-2: - - tx77b3b8d47bf64b69830ad-00649d8a2d + - tx7ed8ad0930f948ef94782-0064a32916 X-Amz-Request-Id: - - tx77b3b8d47bf64b69830ad-00649d8a2d - X-Amz-Version-Id: - - "1688046122274818" + - tx7ed8ad0930f948ef94782-0064a32916 status: 200 OK code: 200 duration: "" @@ -2370,12 +2370,12 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230629T134205Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/?website= + - 20230703T200126Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/?website= method: GET response: body: error.htmlindex.html @@ -2385,11 +2385,11 @@ interactions: Content-Type: - application/xml Date: - - Thu, 29 Jun 2023 13:42:05 GMT + - Mon, 03 Jul 2023 20:01:26 GMT X-Amz-Id-2: - - txa6764f8256c24cd09ffe3-00649d8a2d + - tx2697f4fff2c245388a2b6-0064a32916 X-Amz-Request-Id: - - txa6764f8256c24cd09ffe3-00649d8a2d + - tx2697f4fff2c245388a2b6-0064a32916 status: 200 OK code: 200 duration: "" @@ -2398,12 +2398,12 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230629T134205Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/index.html?acl= + - 20230703T200126Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/index.html?acl= method: GET response: body: |- @@ -2415,11 +2415,11 @@ interactions: Content-Type: - text/html; charset=UTF-8 Date: - - Thu, 29 Jun 2023 13:42:05 GMT + - Mon, 03 Jul 2023 20:01:26 GMT X-Amz-Id-2: - - tx45bf79cc1caa4ffba1f9b-00649d8a2d + - tx9f68fd5f0e6a419dafc5c-0064a32916 X-Amz-Request-Id: - - tx45bf79cc1caa4ffba1f9b-00649d8a2d + - tx9f68fd5f0e6a419dafc5c-0064a32916 status: 200 OK code: 200 duration: "" @@ -2428,12 +2428,12 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230629T134205Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/?acl= + - 20230703T200126Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/?acl= method: GET response: body: |- @@ -2445,11 +2445,11 @@ interactions: Content-Type: - text/html; charset=UTF-8 Date: - - Thu, 29 Jun 2023 13:42:05 GMT + - Mon, 03 Jul 2023 20:01:26 GMT X-Amz-Id-2: - - tx5961f859fed247e4a8558-00649d8a2d + - txf747140826b7472797837-0064a32916 X-Amz-Request-Id: - - tx5961f859fed247e4a8558-00649d8a2d + - txf747140826b7472797837-0064a32916 status: 200 OK code: 200 duration: "" @@ -2460,19 +2460,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/5632e251-caa6-4770-9c85-bc30f04bc211 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/1325c853-6573-4807-b00e-281ce00d9cea method: GET response: - body: '{"created_at":"2023-06-29T13:41:56.661351Z","failover_host":"tf-acc-test-6782315463416293422.s3-website.fr-par.scw.cloud","forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"5632e251-caa6-4770-9c85-bc30f04bc211","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:41:25.948310Z","description":"","frontend_count":0,"id":"6157e331-80eb-46f9-8809-63f8e4897906","instances":[{"created_at":"2023-06-29T12:52:04.694278Z","id":"b960f293-9c61-4fd2-96c8-e427148166bb","ip_address":"10.74.12.53","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:42:03.704837Z","zone":"fr-par-1"}],"ip":[{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":"6157e331-80eb-46f9-8809-63f8e4897906","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","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":"2023-06-29T13:41:28.434463Z","zone":"fr-par-1"},"max_connections":0,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["51.15.249.78"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":0,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:42:03.128357Z"}' + body: '{"created_at":"2023-07-03T20:01:18.871342Z","failover_host":"tf-acc-test-2148036807064013711.s3-website.fr-par.scw.cloud","forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"1325c853-6573-4807-b00e-281ce00d9cea","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:00:48.166694Z","description":"","frontend_count":0,"id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","instances":[{"created_at":"2023-07-03T19:59:54.663451Z","id":"9794a622-5f57-402f-b2d9-4a40c7fd1b74","ip_address":"10.64.86.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:01:24.691110Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:00:50.600039Z","zone":"fr-par-1"},"max_connections":0,"max_retries":3,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["51.15.249.78"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":0,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:01:24.026085Z"}' headers: Content-Length: - - "2003" + - "1946" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:42:05 GMT + - Mon, 03 Jul 2023 20:01:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2482,7 +2482,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed927d53-c59f-4b41-a11a-349640c53c4b + - 8c0526f2-cf3b-41c3-ba4b-facb3f3c8430 status: 200 OK code: 200 duration: "" @@ -2493,19 +2493,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6157e331-80eb-46f9-8809-63f8e4897906 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e813981a-c7f9-46fd-bc03-f638de4ba17c method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:41:25.948310Z","description":"","frontend_count":0,"id":"6157e331-80eb-46f9-8809-63f8e4897906","instances":[{"created_at":"2023-06-29T12:52:04.694278Z","id":"b960f293-9c61-4fd2-96c8-e427148166bb","ip_address":"10.74.12.53","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:42:03.704837Z","zone":"fr-par-1"}],"ip":[{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":"6157e331-80eb-46f9-8809-63f8e4897906","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","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":"2023-06-29T13:41:28.434463Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:00:48.166694Z","description":"","frontend_count":0,"id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","instances":[{"created_at":"2023-07-03T19:59:54.663451Z","id":"9794a622-5f57-402f-b2d9-4a40c7fd1b74","ip_address":"10.64.86.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:01:24.691110Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:00:50.600039Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1062" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:42:05 GMT + - Mon, 03 Jul 2023 20:01:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2515,7 +2515,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76f77fa7-5daf-4352-8718-948559c4225f + - 545a255a-a5e2-41c5-8453-bbae18d913da status: 200 OK code: 200 duration: "" @@ -2526,19 +2526,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6157e331-80eb-46f9-8809-63f8e4897906 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e813981a-c7f9-46fd-bc03-f638de4ba17c method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:41:25.948310Z","description":"","frontend_count":0,"id":"6157e331-80eb-46f9-8809-63f8e4897906","instances":[{"created_at":"2023-06-29T12:52:04.694278Z","id":"b960f293-9c61-4fd2-96c8-e427148166bb","ip_address":"10.74.12.53","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:42:03.704837Z","zone":"fr-par-1"}],"ip":[{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":"6157e331-80eb-46f9-8809-63f8e4897906","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","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":"2023-06-29T13:41:28.434463Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:00:48.166694Z","description":"","frontend_count":0,"id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","instances":[{"created_at":"2023-07-03T19:59:54.663451Z","id":"9794a622-5f57-402f-b2d9-4a40c7fd1b74","ip_address":"10.64.86.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:01:24.691110Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:00:50.600039Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1062" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:42:06 GMT + - Mon, 03 Jul 2023 20:01:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2548,7 +2548,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9885163-43eb-48c2-97ba-b0b23799be0d + - 9458f57f-5fd1-40b3-9016-6df9704cc273 status: 200 OK code: 200 duration: "" @@ -2557,12 +2557,12 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230629T134206Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/index.html + - 20230703T200127Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/index.html method: DELETE response: body: "" @@ -2572,11 +2572,11 @@ interactions: Content-Type: - text/html; charset=UTF-8 Date: - - Thu, 29 Jun 2023 13:42:06 GMT + - Mon, 03 Jul 2023 20:01:27 GMT X-Amz-Id-2: - - tx2f1d6f486ea4410ab759b-00649d8a2e + - tx09ec964078a14144b0b2a-0064a32917 X-Amz-Request-Id: - - tx2f1d6f486ea4410ab759b-00649d8a2e + - tx09ec964078a14144b0b2a-0064a32917 status: 204 No Content code: 204 duration: "" @@ -2587,7 +2587,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/5632e251-caa6-4770-9c85-bc30f04bc211 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/1325c853-6573-4807-b00e-281ce00d9cea method: DELETE response: body: "" @@ -2597,7 +2597,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:42:06 GMT + - Mon, 03 Jul 2023 20:01:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2607,7 +2607,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 406378e6-2e64-4a86-b411-3ab1c3f3bbec + - 8d109534-ccc3-4d28-aa9a-f515baca5781 status: 204 No Content code: 204 duration: "" @@ -2618,19 +2618,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6157e331-80eb-46f9-8809-63f8e4897906 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e813981a-c7f9-46fd-bc03-f638de4ba17c method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:41:25.948310Z","description":"","frontend_count":0,"id":"6157e331-80eb-46f9-8809-63f8e4897906","instances":[{"created_at":"2023-06-29T12:52:04.694278Z","id":"b960f293-9c61-4fd2-96c8-e427148166bb","ip_address":"10.74.12.53","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:42:06.410327Z","zone":"fr-par-1"}],"ip":[{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":"6157e331-80eb-46f9-8809-63f8e4897906","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","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":"2023-06-29T13:41:28.434463Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:00:48.166694Z","description":"","frontend_count":0,"id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","instances":[{"created_at":"2023-07-03T19:59:54.663451Z","id":"9794a622-5f57-402f-b2d9-4a40c7fd1b74","ip_address":"10.64.86.5","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:01:27.431204Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:00:50.600039Z","zone":"fr-par-1"}' headers: Content-Length: - - "1095" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:42:06 GMT + - Mon, 03 Jul 2023 20:01:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2640,7 +2640,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55842799-5ebb-45ed-960a-19681b46bf60 + - 83aa50e7-e596-4850-acaa-882cf7035e54 status: 200 OK code: 200 duration: "" @@ -2651,19 +2651,15 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6157e331-80eb-46f9-8809-63f8e4897906 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/91d21ba4-62a3-42ff-99c4-92dc90e6c24d + method: DELETE response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:41:25.948310Z","description":"","frontend_count":0,"id":"6157e331-80eb-46f9-8809-63f8e4897906","instances":[{"created_at":"2023-06-29T12:52:04.694278Z","id":"b960f293-9c61-4fd2-96c8-e427148166bb","ip_address":"10.74.12.53","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:42:06.410327Z","zone":"fr-par-1"}],"ip":[{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":"6157e331-80eb-46f9-8809-63f8e4897906","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","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":"2023-06-29T13:41:28.434463Z","zone":"fr-par-1"}' + body: "" headers: - Content-Length: - - "1095" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json Date: - - Thu, 29 Jun 2023 13:42:06 GMT + - Mon, 03 Jul 2023 20:01:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2673,9 +2669,9 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c65c25d4-fb78-4d1d-9f87-177af4095c13 - status: 200 OK - code: 200 + - cf3f0e33-6fe5-478e-8503-c936eb63bb25 + status: 204 No Content + code: 204 duration: "" - request: body: "" @@ -2684,15 +2680,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/91d21ba4-62a3-42ff-99c4-92dc90e6c24d - method: DELETE + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e813981a-c7f9-46fd-bc03-f638de4ba17c + method: GET response: - body: "" + body: '{"backend_count":0,"created_at":"2023-07-03T20:00:48.166694Z","description":"","frontend_count":0,"id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","instances":[{"created_at":"2023-07-03T19:59:54.663451Z","id":"9794a622-5f57-402f-b2d9-4a40c7fd1b74","ip_address":"10.64.86.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:01:27.680969Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:00:50.600039Z","zone":"fr-par-1"}' headers: + Content-Length: + - "1062" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json Date: - - Thu, 29 Jun 2023 13:42:06 GMT + - Mon, 03 Jul 2023 20:01:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2702,21 +2702,21 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a4fb5a2-a6b7-49f7-a48c-7ced9d27066b - status: 204 No Content - code: 204 + - d971c6b4-27fe-4c21-8452-8738405c0f6b + status: 200 OK + code: 200 duration: "" - request: body: "" form: {} headers: User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230629T134206Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/?website= + - 20230703T200127Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/?website= method: DELETE response: body: "" @@ -2726,11 +2726,11 @@ interactions: Content-Type: - text/html; charset=UTF-8 Date: - - Thu, 29 Jun 2023 13:42:06 GMT + - Mon, 03 Jul 2023 20:01:27 GMT X-Amz-Id-2: - - tx020d692909fb4d54ab1cf-00649d8a2e + - txf6a7c54a90cf45da8fa54-0064a32917 X-Amz-Request-Id: - - tx020d692909fb4d54ab1cf-00649d8a2e + - txf6a7c54a90cf45da8fa54-0064a32917 status: 204 No Content code: 204 duration: "" @@ -2741,7 +2741,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6157e331-80eb-46f9-8809-63f8e4897906?release_ip=false + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e813981a-c7f9-46fd-bc03-f638de4ba17c?release_ip=false method: DELETE response: body: "" @@ -2751,7 +2751,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:42:06 GMT + - Mon, 03 Jul 2023 20:01:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2761,7 +2761,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14f08297-fcc4-40c9-8099-e4c762551046 + - a54f2556-714a-48b2-bf04-c8ee440370fc status: 204 No Content code: 204 duration: "" @@ -2772,19 +2772,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6157e331-80eb-46f9-8809-63f8e4897906 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e813981a-c7f9-46fd-bc03-f638de4ba17c method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:41:25.948310Z","description":"","frontend_count":0,"id":"6157e331-80eb-46f9-8809-63f8e4897906","instances":[{"created_at":"2023-06-29T12:52:04.694278Z","id":"b960f293-9c61-4fd2-96c8-e427148166bb","ip_address":"10.74.12.53","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:42:06.643093Z","zone":"fr-par-1"}],"ip":[{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":"6157e331-80eb-46f9-8809-63f8e4897906","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","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":"2023-06-29T13:42:06.772338Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:00:48.166694Z","description":"","frontend_count":0,"id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","instances":[{"created_at":"2023-07-03T19:59:54.663451Z","id":"9794a622-5f57-402f-b2d9-4a40c7fd1b74","ip_address":"10.64.86.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:01:27.680969Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"e813981a-c7f9-46fd-bc03-f638de4ba17c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:01:27.830297Z","zone":"fr-par-1"}' headers: Content-Length: - - "1097" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:42:06 GMT + - Mon, 03 Jul 2023 20:01:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2794,7 +2794,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1920c925-8be1-4306-9a8f-58311b496a3a + - 50ce2072-9cdd-46a1-85a4-efbac70a4d5f status: 200 OK code: 200 duration: "" @@ -2803,12 +2803,12 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230629T134206Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/ + - 20230703T200127Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/ method: DELETE response: body: "" @@ -2818,11 +2818,11 @@ interactions: Content-Type: - text/html; charset=UTF-8 Date: - - Thu, 29 Jun 2023 13:42:07 GMT + - Mon, 03 Jul 2023 20:01:28 GMT X-Amz-Id-2: - - tx9b66b890b765464ba6337-00649d8a2e + - txd5dc67e8463f465c933cf-0064a32917 X-Amz-Request-Id: - - tx9b66b890b765464ba6337-00649d8a2e + - txd5dc67e8463f465c933cf-0064a32917 status: 204 No Content code: 204 duration: "" @@ -2833,7 +2833,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6157e331-80eb-46f9-8809-63f8e4897906 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e813981a-c7f9-46fd-bc03-f638de4ba17c method: GET response: body: '{"message":"lbs not Found"}' @@ -2845,7 +2845,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:42:37 GMT + - Mon, 03 Jul 2023 20:01:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2855,7 +2855,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f589564-6fae-415a-adf2-dc12c7b122ee + - 380c3e6c-b519-49ba-8573-3a64865edd13 status: 404 Not Found code: 404 duration: "" @@ -2866,7 +2866,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/6157e331-80eb-46f9-8809-63f8e4897906 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e813981a-c7f9-46fd-bc03-f638de4ba17c method: GET response: body: '{"message":"lbs not Found"}' @@ -2878,7 +2878,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:42:37 GMT + - Mon, 03 Jul 2023 20:01:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2888,7 +2888,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1a1132d-ca17-47da-9497-408bbf23f431 + - dd1c03e5-af6d-4f3f-9202-878522f866e8 status: 404 Not Found code: 404 duration: "" @@ -2899,19 +2899,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/b72dd78a-c646-45bb-a1cc-69b23ca543db + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"b72dd78a-c646-45bb-a1cc-69b23ca543db","ip_address":"51.159.206.110","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-206-110.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "287" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:42:37 GMT + - Mon, 03 Jul 2023 20:01:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2921,7 +2921,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5349f2b5-2dbc-4aaa-8cc0-6030c2f91dfa + - b5ba14f5-9766-45bb-968f-79cf402d2799 status: 200 OK code: 200 duration: "" @@ -2932,7 +2932,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/b72dd78a-c646-45bb-a1cc-69b23ca543db + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: DELETE response: body: "" @@ -2942,7 +2942,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:42:37 GMT + - Mon, 03 Jul 2023 20:01:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2952,7 +2952,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 51f83aa2-8b84-4809-af5c-df94dfa19ae9 + - 8b75d6f3-7e39-4783-a13a-44ce6a098854 status: 204 No Content code: 204 duration: "" @@ -2963,7 +2963,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/5632e251-caa6-4770-9c85-bc30f04bc211 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/1325c853-6573-4807-b00e-281ce00d9cea method: GET response: body: '{"message":"backend not Found"}' @@ -2975,7 +2975,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:42:37 GMT + - Mon, 03 Jul 2023 20:01:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2985,7 +2985,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e48a9e2f-26d8-43ec-af1c-1bea743c38df + - 69da80cc-922b-41f2-bb4e-283fb32ca461 status: 404 Not Found code: 404 duration: "" @@ -2994,26 +2994,26 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.275 (go1.20.4; darwin; amd64) + - aws-sdk-go/1.44.294 (go1.20.4; darwin; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230629T134237Z - url: https://tf-acc-test-6782315463416293422.s3.fr-par.scw.cloud/?website= + - 20230703T200158Z + url: https://tf-acc-test-2148036807064013711.s3.fr-par.scw.cloud/?website= method: GET response: body: |- - NoSuchBucketThe specified bucket does not exist.txa54acecc891f4bc192ce7-00649d8a4dtf-acc-test-6782315463416293422 + NoSuchBucketThe specified bucket does not exist.txbbdadbb88be44aa987c80-0064a32936tf-acc-test-2148036807064013711 headers: Content-Type: - application/xml Date: - - Thu, 29 Jun 2023 13:42:37 GMT + - Mon, 03 Jul 2023 20:01:58 GMT X-Amz-Id-2: - - txa54acecc891f4bc192ce7-00649d8a4d + - txbbdadbb88be44aa987c80-0064a32936 X-Amz-Request-Id: - - txa54acecc891f4bc192ce7-00649d8a4d + - txbbdadbb88be44aa987c80-0064a32936 status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/lb-frontend-acl-basic.cassette.yaml b/scaleway/testdata/lb-frontend-acl-basic.cassette.yaml index 6a78192433..685fb2ccf9 100644 --- a/scaleway/testdata/lb-frontend-acl-basic.cassette.yaml +++ b/scaleway/testdata/lb-frontend-acl-basic.cassette.yaml @@ -13,16 +13,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips method: POST response: - body: '{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "287" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:26:34 GMT + - Mon, 03 Jul 2023 20:07:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -32,7 +32,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f06cdb8-9042-4318-84a9-3c7f79ff5cba + - 4b4b7a07-a692-488e-ab22-150f44ba9af9 status: 200 OK code: 200 duration: "" @@ -43,19 +43,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c6b47cd5-7fca-4acc-bde4-e32e91f58310 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "287" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:26:34 GMT + - Mon, 03 Jul 2023 20:07:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -65,12 +65,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2197f5fb-3353-436f-b6e0-ad7a822a8778 + - 91b74332-287a-4995-8d49-f37e5818cd36 status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-lb-acl","description":"","ip_id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","assign_flexible_ip":null,"tags":null,"type":"lb-s","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-lb-acl","description":"","ip_id":"86df9ff8-7a77-492d-9b03-4f6205127499","assign_flexible_ip":null,"tags":null,"type":"lb-s","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' form: {} headers: Content-Type: @@ -81,16 +81,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs method: POST response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:26:34.326148767Z","description":"","frontend_count":0,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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":"2023-06-29T13:26:34.326148767Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:07:18.803942985Z","description":"","frontend_count":0,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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":"2023-07-03T20:07:18.803942985Z","zone":"fr-par-1"}' headers: Content-Length: - - "890" + - "866" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:26:34 GMT + - Mon, 03 Jul 2023 20:07:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -100,7 +100,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e4d61e5-7015-43a5-8328-550c7ef380e1 + - 7ffe8e08-dcd0-4c76-ade6-e4ee3ccdfbe1 status: 200 OK code: 200 duration: "" @@ -111,19 +111,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/641b3663-8eb8-42ba-b29d-388d8962519d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/957a1d7b-20e5-4f6e-9068-0ce89e548eb9 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":0,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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":"2023-06-29T13:26:34.326149Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":0,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[{"created_at":"2023-07-03T19:46:44.679933Z","id":"1b7fbeaa-c809-4be1-ac65-26773555f4b7","ip_address":"10.69.150.67","region":"fr-par","status":"unknown","updated_at":"2023-07-03T20:07:19.010871Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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":"2023-07-03T20:07:19.021653Z","zone":"fr-par-1"}' headers: Content-Length: - - "884" + - "1073" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:26:34 GMT + - Mon, 03 Jul 2023 20:07:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -133,7 +133,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c480e47-3f12-49fd-9f76-902c94944ce0 + - 1fc3c50b-fb6e-4d81-9e52-e9a93d183ead status: 200 OK code: 200 duration: "" @@ -144,19 +144,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/641b3663-8eb8-42ba-b29d-388d8962519d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/957a1d7b-20e5-4f6e-9068-0ce89e548eb9 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":0,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[{"created_at":"2023-06-29T12:04:05.551834Z","id":"a8adf25c-e8c6-46f4-8ee8-e121bf6de26c","ip_address":"10.64.142.25","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:26:35.401933Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":0,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[{"created_at":"2023-07-03T19:46:44.679933Z","id":"1b7fbeaa-c809-4be1-ac65-26773555f4b7","ip_address":"10.69.150.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:07:20.042622Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"}' headers: Content-Length: - - "1098" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:04 GMT + - Mon, 03 Jul 2023 20:07:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -166,7 +166,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4fe539d9-20d9-44fa-95b9-0d506dccebc0 + - 16930573-1934-4f9d-843c-f168327e3e19 status: 200 OK code: 200 duration: "" @@ -177,19 +177,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/641b3663-8eb8-42ba-b29d-388d8962519d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/957a1d7b-20e5-4f6e-9068-0ce89e548eb9 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":0,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[{"created_at":"2023-06-29T12:04:05.551834Z","id":"a8adf25c-e8c6-46f4-8ee8-e121bf6de26c","ip_address":"10.64.142.25","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:26:35.401933Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":0,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[{"created_at":"2023-07-03T19:46:44.679933Z","id":"1b7fbeaa-c809-4be1-ac65-26773555f4b7","ip_address":"10.69.150.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:07:20.042622Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"}' headers: Content-Length: - - "1098" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:04 GMT + - Mon, 03 Jul 2023 20:07:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -199,7 +199,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 243d0fc0-6ce8-43f1-977e-dce3d1d578df + - 50b453cc-c730-4f44-a7d8-39367b7ec69a status: 200 OK code: 200 duration: "" @@ -210,19 +210,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/641b3663-8eb8-42ba-b29d-388d8962519d/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/957a1d7b-20e5-4f6e-9068-0ce89e548eb9/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:04 GMT + - Mon, 03 Jul 2023 20:07:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -232,7 +232,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b01f464-0061-458a-ba1b-c5349d2368a4 + - 2a829e5c-c32d-4834-bedc-25dd08f1bafd status: 200 OK code: 200 duration: "" @@ -243,19 +243,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/641b3663-8eb8-42ba-b29d-388d8962519d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/957a1d7b-20e5-4f6e-9068-0ce89e548eb9 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":0,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[{"created_at":"2023-06-29T12:04:05.551834Z","id":"a8adf25c-e8c6-46f4-8ee8-e121bf6de26c","ip_address":"10.64.142.25","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:26:35.401933Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":0,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[{"created_at":"2023-07-03T19:46:44.679933Z","id":"1b7fbeaa-c809-4be1-ac65-26773555f4b7","ip_address":"10.69.150.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:07:20.042622Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"}' headers: Content-Length: - - "1098" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:04 GMT + - Mon, 03 Jul 2023 20:07:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -265,12 +265,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eed9d5f1-8b63-4458-8ef5-872df93f6b77 + - 8653cbd5-b774-4b9c-b8bf-508db07e12c3 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-bkd-peaceful-driscoll","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_max_retries":2,"check_send_proxy":false,"transient_check_delay":null,"check_delay":60000,"check_timeout":30000},"server_ip":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":null,"max_retries":3,"max_connections":null,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' + body: '{"name":"tf-lb-bkd-sharp-turing","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_max_retries":2,"check_send_proxy":false,"transient_check_delay":"0.500000000s","check_delay":60000,"check_timeout":30000},"server_ip":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":null,"max_retries":3,"max_connections":null,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' form: {} headers: Content-Type: @@ -278,19 +278,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/641b3663-8eb8-42ba-b29d-388d8962519d/backends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/957a1d7b-20e5-4f6e-9068-0ce89e548eb9/backends method: POST response: - body: '{"created_at":"2023-06-29T13:27:04.933696619Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":0,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[{"created_at":"2023-06-29T12:04:05.551834Z","id":"a8adf25c-e8c6-46f4-8ee8-e121bf6de26c","ip_address":"10.64.142.25","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:27:04.964967645Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933696619Z"}' + body: '{"created_at":"2023-07-03T20:07:49.473277133Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":0,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[{"created_at":"2023-07-03T19:46:44.679933Z","id":"1b7fbeaa-c809-4be1-ac65-26773555f4b7","ip_address":"10.69.150.67","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:07:49.502457035Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277133Z"}' headers: Content-Length: - - "1976" + - "1915" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:05 GMT + - Mon, 03 Jul 2023 20:07:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -300,7 +300,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1be838f2-e3fc-4d29-a93f-72fd0ba8daf9 + - 40efd4e9-c3a7-4bfd-b8f2-7591114e5cab status: 200 OK code: 200 duration: "" @@ -311,19 +311,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/641b3663-8eb8-42ba-b29d-388d8962519d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/957a1d7b-20e5-4f6e-9068-0ce89e548eb9 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":0,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[{"created_at":"2023-06-29T12:04:05.551834Z","id":"a8adf25c-e8c6-46f4-8ee8-e121bf6de26c","ip_address":"10.64.142.25","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:27:04.964968Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":0,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[{"created_at":"2023-07-03T19:46:44.679933Z","id":"1b7fbeaa-c809-4be1-ac65-26773555f4b7","ip_address":"10.69.150.67","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:07:49.502457Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"}' headers: Content-Length: - - "1100" + - "1070" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:05 GMT + - Mon, 03 Jul 2023 20:07:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -333,7 +333,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7443de3f-9053-42d9-8964-dfa8a18b3cf4 + - 90eef6c1-e30a-41b1-96ff-7b2fe231dd91 status: 200 OK code: 200 duration: "" @@ -344,19 +344,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/68cf7418-4982-444c-9a3c-8aec79447d7e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/6243a9f4-1b47-4602-b540-87869a069d91 method: GET response: - body: '{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":0,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[{"created_at":"2023-06-29T12:04:05.551834Z","id":"a8adf25c-e8c6-46f4-8ee8-e121bf6de26c","ip_address":"10.64.142.25","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:27:04.964968Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"}' + body: '{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":0,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[{"created_at":"2023-07-03T19:46:44.679933Z","id":"1b7fbeaa-c809-4be1-ac65-26773555f4b7","ip_address":"10.69.150.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:07:49.775110Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"}' headers: Content-Length: - - "1967" + - "1904" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:05 GMT + - Mon, 03 Jul 2023 20:07:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -366,7 +366,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c56ed429-a64c-4373-bcac-37d0e7e23b3f + - 783de95c-751a-480a-a05a-7422e8077efd status: 200 OK code: 200 duration: "" @@ -377,19 +377,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/641b3663-8eb8-42ba-b29d-388d8962519d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/957a1d7b-20e5-4f6e-9068-0ce89e548eb9 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":0,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[{"created_at":"2023-06-29T12:04:05.551834Z","id":"a8adf25c-e8c6-46f4-8ee8-e121bf6de26c","ip_address":"10.64.142.25","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:27:05.185098Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":0,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[{"created_at":"2023-07-03T19:46:44.679933Z","id":"1b7fbeaa-c809-4be1-ac65-26773555f4b7","ip_address":"10.69.150.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:07:49.775110Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"}' headers: Content-Length: - - "1098" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:05 GMT + - Mon, 03 Jul 2023 20:07:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -399,7 +399,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b0575cb-72ca-4e34-9573-33f91d86a2bb + - 9bf595a0-55bd-4dc4-a43a-fe2e0a185531 status: 200 OK code: 200 duration: "" @@ -410,19 +410,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/641b3663-8eb8-42ba-b29d-388d8962519d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/957a1d7b-20e5-4f6e-9068-0ce89e548eb9 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":0,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[{"created_at":"2023-06-29T12:04:05.551834Z","id":"a8adf25c-e8c6-46f4-8ee8-e121bf6de26c","ip_address":"10.64.142.25","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:27:05.185098Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":0,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[{"created_at":"2023-07-03T19:46:44.679933Z","id":"1b7fbeaa-c809-4be1-ac65-26773555f4b7","ip_address":"10.69.150.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:07:49.775110Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"}' headers: Content-Length: - - "1098" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:05 GMT + - Mon, 03 Jul 2023 20:07:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -432,12 +432,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f92a4f1-9493-4543-83a9-862e7af9a404 + - 965f9919-ddcf-42c1-9cd8-879e057b4ccb status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-test","inbound_port":80,"backend_id":"68cf7418-4982-444c-9a3c-8aec79447d7e","certificate_ids":null,"enable_http3":false,"timeout_client":30000}' + body: '{"name":"tf-test","inbound_port":80,"backend_id":"6243a9f4-1b47-4602-b540-87869a069d91","certificate_ids":null,"enable_http3":false,"timeout_client":30000}' form: {} headers: Content-Type: @@ -445,19 +445,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/641b3663-8eb8-42ba-b29d-388d8962519d/frontends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/957a1d7b-20e5-4f6e-9068-0ce89e548eb9/frontends method: POST response: - body: '{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[{"created_at":"2023-06-29T12:04:05.551834Z","id":"a8adf25c-e8c6-46f4-8ee8-e121bf6de26c","ip_address":"10.64.142.25","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:27:05.575960022Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:05.528089Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[{"created_at":"2023-07-03T19:46:44.679933Z","id":"1b7fbeaa-c809-4be1-ac65-26773555f4b7","ip_address":"10.69.150.67","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:07:50.223936016Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:50.169609Z"}' headers: Content-Length: - - "3127" + - "3032" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:05 GMT + - Mon, 03 Jul 2023 20:07:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -467,7 +467,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd350f1b-14e6-462d-8abf-cd816ea66c00 + - 9552b01d-5554-47f6-aaa9-8138e643fe16 status: 200 OK code: 200 duration: "" @@ -478,19 +478,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/641b3663-8eb8-42ba-b29d-388d8962519d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/957a1d7b-20e5-4f6e-9068-0ce89e548eb9 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[{"created_at":"2023-06-29T12:04:05.551834Z","id":"a8adf25c-e8c6-46f4-8ee8-e121bf6de26c","ip_address":"10.64.142.25","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:27:05.575960Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[{"created_at":"2023-07-03T19:46:44.679933Z","id":"1b7fbeaa-c809-4be1-ac65-26773555f4b7","ip_address":"10.69.150.67","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:07:50.223936Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"}' headers: Content-Length: - - "1100" + - "1070" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:05 GMT + - Mon, 03 Jul 2023 20:07:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -500,12 +500,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f70c9720-df92-447d-9dea-999db6eaa855 + - 0bc138b2-50b3-4204-b58c-d1a9d4960b1a status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-test","inbound_port":80,"backend_id":"68cf7418-4982-444c-9a3c-8aec79447d7e","certificate_ids":null,"enable_http3":false,"timeout_client":30000}' + body: '{"name":"tf-test","inbound_port":80,"backend_id":"6243a9f4-1b47-4602-b540-87869a069d91","certificate_ids":null,"enable_http3":false,"timeout_client":30000}' form: {} headers: Content-Type: @@ -513,19 +513,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/bd2724e3-c922-4767-8a3c-054ed484bf00 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/61dd02bd-ee89-4e84-a04a-624acfe025e2 method: PUT response: - body: '{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[{"created_at":"2023-06-29T12:04:05.551834Z","id":"a8adf25c-e8c6-46f4-8ee8-e121bf6de26c","ip_address":"10.64.142.25","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:27:05.958922666Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:05.936758719Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[{"created_at":"2023-07-03T19:46:44.679933Z","id":"1b7fbeaa-c809-4be1-ac65-26773555f4b7","ip_address":"10.69.150.67","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:07:50.593395594Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:50.570560210Z"}' headers: Content-Length: - - "3130" + - "3035" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:06 GMT + - Mon, 03 Jul 2023 20:07:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -535,7 +535,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 078c64e4-1f89-4653-9329-fd209b3b35fe + - 033afbd3-eb7c-4d76-a787-5ed249193a87 status: 200 OK code: 200 duration: "" @@ -546,19 +546,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/bd2724e3-c922-4767-8a3c-054ed484bf00/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/61dd02bd-ee89-4e84-a04a-624acfe025e2/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:06 GMT + - Mon, 03 Jul 2023 20:07:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -568,7 +568,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd54f8d6-39af-48da-a40e-9b4aff6276b3 + - 31dbe3e9-df4a-4b96-a1a0-886cc477e023 status: 200 OK code: 200 duration: "" @@ -581,19 +581,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/bd2724e3-c922-4767-8a3c-054ed484bf00/acls + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/61dd02bd-ee89-4e84-a04a-624acfe025e2/acls method: POST response: - body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:27:06.345512884Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:05.936759Z"},"id":"2b97c160-2b12-445c-b8d2-d2e1c0c82b9c","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"]},"name":"test-acl","updated_at":"2023-06-29T13:27:06.345512884Z"}' + body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:07:50.990299296Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:50.570560Z"},"id":"e10ed9fd-947a-4d74-a9b7-e1db29d7a186","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"]},"name":"test-acl","updated_at":"2023-07-03T20:07:50.990299296Z"}' headers: Content-Length: - - "3325" + - "3221" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:06 GMT + - Mon, 03 Jul 2023 20:07:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -603,12 +603,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d61b9332-451c-43ca-9122-52768fc30386 + - 65f8434a-9c7e-4fd9-971a-b1a748e25fb8 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-acl-compassionate-cohen","action":{"type":"allow","redirect":null},"match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"path_begin","http_filter_value":["criteria1","criteria2"],"http_filter_option":null,"invert":true},"index":2,"description":""}' + body: '{"name":"tf-lb-acl-friendly-williamson","action":{"type":"allow","redirect":null},"match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"path_begin","http_filter_value":["criteria1","criteria2"],"http_filter_option":null,"invert":true},"index":2,"description":""}' form: {} headers: Content-Type: @@ -616,19 +616,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/bd2724e3-c922-4767-8a3c-054ed484bf00/acls + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/61dd02bd-ee89-4e84-a04a-624acfe025e2/acls method: POST response: - body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:27:06.719157944Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:05.936759Z"},"id":"cecfedc7-f5cf-496b-b99e-be65143bf0b7","index":2,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":true,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-compassionate-cohen","updated_at":"2023-06-29T13:27:06.719157944Z"}' + body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:07:51.326920698Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:50.570560Z"},"id":"3ef7c8c4-207d-40f8-a332-489db9863ca4","index":2,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":true,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-friendly-williamson","updated_at":"2023-07-03T20:07:51.326920698Z"}' headers: Content-Length: - - "3324" + - "3221" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:06 GMT + - Mon, 03 Jul 2023 20:07:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -638,12 +638,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f51d8ab-a224-4198-94ad-ba4e2006a30c + - ab6d694e-a8ae-45bd-933d-7e3765bd34c8 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-acl-jolly-cray","action":{"type":"allow","redirect":null},"match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"path_begin","http_filter_value":["criteria1","criteria2"],"http_filter_option":null,"invert":false},"index":3,"description":""}' + body: '{"name":"tf-lb-acl-hungry-clarke","action":{"type":"allow","redirect":null},"match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"path_begin","http_filter_value":["criteria1","criteria2"],"http_filter_option":null,"invert":false},"index":3,"description":""}' form: {} headers: Content-Type: @@ -651,19 +651,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/bd2724e3-c922-4767-8a3c-054ed484bf00/acls + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/61dd02bd-ee89-4e84-a04a-624acfe025e2/acls method: POST response: - body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:27:07.125542626Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:05.936759Z"},"id":"1658558c-844a-4021-bf3b-1cbd095581cf","index":3,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-jolly-cray","updated_at":"2023-06-29T13:27:07.125542626Z"}' + body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:07:51.749991411Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:50.570560Z"},"id":"ba137c2e-57fe-4232-92fc-b1132e0dee22","index":3,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-hungry-clarke","updated_at":"2023-07-03T20:07:51.749991411Z"}' headers: Content-Length: - - "3316" + - "3216" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:07 GMT + - Mon, 03 Jul 2023 20:07:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -673,12 +673,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75a22d57-f018-42ae-ba62-d03a355a443e + - 5e010038-0d29-4233-beee-66b92a9a49af status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-acl-recursing-moore","action":{"type":"allow","redirect":null},"match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"acl_http_filter_none","http_filter_value":[],"http_filter_option":null,"invert":false},"index":4,"description":""}' + body: '{"name":"tf-lb-acl-lucid-ganguly","action":{"type":"allow","redirect":null},"match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"acl_http_filter_none","http_filter_value":[],"http_filter_option":null,"invert":false},"index":4,"description":""}' form: {} headers: Content-Type: @@ -686,19 +686,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/bd2724e3-c922-4767-8a3c-054ed484bf00/acls + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/61dd02bd-ee89-4e84-a04a-624acfe025e2/acls method: POST response: - body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:27:07.532573246Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:05.936759Z"},"id":"b7d1ebd9-3eac-43a9-b728-9a5138b3e472","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-recursing-moore","updated_at":"2023-06-29T13:27:07.532573246Z"}' + body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:07:52.125676719Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:50.570560Z"},"id":"9f605564-05d8-4edc-8e22-69a4f766de47","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-lucid-ganguly","updated_at":"2023-07-03T20:07:52.125676719Z"}' headers: Content-Length: - - "3307" + - "3203" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:07 GMT + - Mon, 03 Jul 2023 20:07:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -708,12 +708,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b003c531-d116-4264-ad3d-8a55fbfbbb53 + - a0967f46-967e-456f-b7dd-5341741069e3 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-acl-sad-gould","action":{"type":"deny","redirect":null},"match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"acl_http_filter_none","http_filter_value":[],"http_filter_option":null,"invert":false},"index":5,"description":""}' + body: '{"name":"tf-lb-acl-keen-kirch","action":{"type":"deny","redirect":null},"match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"acl_http_filter_none","http_filter_value":[],"http_filter_option":null,"invert":false},"index":5,"description":""}' form: {} headers: Content-Type: @@ -721,19 +721,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/bd2724e3-c922-4767-8a3c-054ed484bf00/acls + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/61dd02bd-ee89-4e84-a04a-624acfe025e2/acls method: POST response: - body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2023-06-29T13:27:07.873206351Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:05.936759Z"},"id":"47ed673a-d762-4f5a-a346-eb871d235838","index":5,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-sad-gould","updated_at":"2023-06-29T13:27:07.873206351Z"}' + body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2023-07-03T20:07:52.524009801Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:50.570560Z"},"id":"64c881d9-1acc-4b92-8481-4fb04d3413de","index":5,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-keen-kirch","updated_at":"2023-07-03T20:07:52.524009801Z"}' headers: Content-Length: - - "3300" + - "3199" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:08 GMT + - Mon, 03 Jul 2023 20:07:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -743,12 +743,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ceb4fd3-3151-4322-a451-25aa72af8955 + - 5c6d4709-13fa-48b2-86b7-55cc4171390c status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-acl-romantic-hoover","action":{"type":"allow","redirect":null},"match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"http_header_match","http_filter_value":["example.com"],"http_filter_option":"host","invert":false},"index":6,"description":""}' + body: '{"name":"tf-lb-acl-focused-keller","action":{"type":"allow","redirect":null},"match":{"ip_subnet":["0.0.0.0/0"],"http_filter":"http_header_match","http_filter_value":["example.com"],"http_filter_option":"host","invert":false},"index":6,"description":""}' form: {} headers: Content-Type: @@ -756,19 +756,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/bd2724e3-c922-4767-8a3c-054ed484bf00/acls + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/61dd02bd-ee89-4e84-a04a-624acfe025e2/acls method: POST response: - body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:27:08.214107865Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:05.936759Z"},"id":"a744af62-4022-474e-94a0-e1f3c1fb66bc","index":6,"match":{"http_filter":"http_header_match","http_filter_option":"host","http_filter_value":["example.com"],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-romantic-hoover","updated_at":"2023-06-29T13:27:08.214107865Z"}' + body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:07:53.012363404Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:50.570560Z"},"id":"5e88a1f3-b04f-4682-b1ba-ab68a698191e","index":6,"match":{"http_filter":"http_header_match","http_filter_option":"host","http_filter_value":["example.com"],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-focused-keller","updated_at":"2023-07-03T20:07:53.012363404Z"}' headers: Content-Length: - - "3319" + - "3216" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:08 GMT + - Mon, 03 Jul 2023 20:07:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -778,7 +778,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd00dfc0-6224-4410-bc09-a5f36714149d + - a0a21818-33f5-4ec8-93cc-a184748b0a71 status: 200 OK code: 200 duration: "" @@ -789,19 +789,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/bd2724e3-c922-4767-8a3c-054ed484bf00 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/61dd02bd-ee89-4e84-a04a-624acfe025e2 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:05.936759Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:50.570560Z"}' headers: Content-Length: - - "2904" + - "2815" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:08 GMT + - Mon, 03 Jul 2023 20:07:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -811,7 +811,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c71d46a2-088e-45ea-a022-4f67fe267eb0 + - 3e0e5327-8dd4-4c52-b2b2-eded9e5ed9b6 status: 200 OK code: 200 duration: "" @@ -822,17 +822,17 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/bd2724e3-c922-4767-8a3c-054ed484bf00/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/61dd02bd-ee89-4e84-a04a-624acfe025e2/acls?order_by=created_at_asc&page=1 method: GET response: - body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:27:06.345513Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:05.936759Z"},"id":"2b97c160-2b12-445c-b8d2-d2e1c0c82b9c","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"]},"name":"test-acl","updated_at":"2023-06-29T13:27:06.345513Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:27:06.719158Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:05.936759Z"},"id":"cecfedc7-f5cf-496b-b99e-be65143bf0b7","index":2,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":true,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-compassionate-cohen","updated_at":"2023-06-29T13:27:06.719158Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:27:07.125543Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:05.936759Z"},"id":"1658558c-844a-4021-bf3b-1cbd095581cf","index":3,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-jolly-cray","updated_at":"2023-06-29T13:27:07.125543Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:27:07.532573Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:05.936759Z"},"id":"b7d1ebd9-3eac-43a9-b728-9a5138b3e472","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-recursing-moore","updated_at":"2023-06-29T13:27:07.532573Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2023-06-29T13:27:07.873206Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:05.936759Z"},"id":"47ed673a-d762-4f5a-a346-eb871d235838","index":5,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-sad-gould","updated_at":"2023-06-29T13:27:07.873206Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:27:08.214108Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:05.936759Z"},"id":"a744af62-4022-474e-94a0-e1f3c1fb66bc","index":6,"match":{"http_filter":"http_header_match","http_filter_option":"host","http_filter_value":["example.com"],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-romantic-hoover","updated_at":"2023-06-29T13:27:08.214108Z"}],"total_count":6}' + body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:07:50.990299Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:50.570560Z"},"id":"e10ed9fd-947a-4d74-a9b7-e1db29d7a186","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"]},"name":"test-acl","updated_at":"2023-07-03T20:07:50.990299Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:07:51.326921Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:50.570560Z"},"id":"3ef7c8c4-207d-40f8-a332-489db9863ca4","index":2,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":true,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-friendly-williamson","updated_at":"2023-07-03T20:07:51.326921Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:07:51.749991Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:50.570560Z"},"id":"ba137c2e-57fe-4232-92fc-b1132e0dee22","index":3,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-hungry-clarke","updated_at":"2023-07-03T20:07:51.749991Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:07:52.125677Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:50.570560Z"},"id":"9f605564-05d8-4edc-8e22-69a4f766de47","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-lucid-ganguly","updated_at":"2023-07-03T20:07:52.125677Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2023-07-03T20:07:52.524010Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:50.570560Z"},"id":"64c881d9-1acc-4b92-8481-4fb04d3413de","index":5,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-keen-kirch","updated_at":"2023-07-03T20:07:52.524010Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:07:53.012363Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:50.570560Z"},"id":"5e88a1f3-b04f-4682-b1ba-ab68a698191e","index":6,"match":{"http_filter":"http_header_match","http_filter_option":"host","http_filter_value":["example.com"],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-focused-keller","updated_at":"2023-07-03T20:07:53.012363Z"}],"total_count":6}' headers: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:08 GMT + - Mon, 03 Jul 2023 20:07:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -842,7 +842,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 604468c0-bfff-47a3-9e56-59c20b3e996d + - 737c9d65-a2b1-471b-bfe5-40e28e422263 status: 200 OK code: 200 duration: "" @@ -853,17 +853,17 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/bd2724e3-c922-4767-8a3c-054ed484bf00/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/61dd02bd-ee89-4e84-a04a-624acfe025e2/acls?order_by=created_at_asc&page=1 method: GET response: - body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:27:06.345513Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:05.936759Z"},"id":"2b97c160-2b12-445c-b8d2-d2e1c0c82b9c","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"]},"name":"test-acl","updated_at":"2023-06-29T13:27:06.345513Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:27:06.719158Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:05.936759Z"},"id":"cecfedc7-f5cf-496b-b99e-be65143bf0b7","index":2,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":true,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-compassionate-cohen","updated_at":"2023-06-29T13:27:06.719158Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:27:07.125543Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:05.936759Z"},"id":"1658558c-844a-4021-bf3b-1cbd095581cf","index":3,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-jolly-cray","updated_at":"2023-06-29T13:27:07.125543Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:27:07.532573Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:05.936759Z"},"id":"b7d1ebd9-3eac-43a9-b728-9a5138b3e472","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-recursing-moore","updated_at":"2023-06-29T13:27:07.532573Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2023-06-29T13:27:07.873206Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:05.936759Z"},"id":"47ed673a-d762-4f5a-a346-eb871d235838","index":5,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-sad-gould","updated_at":"2023-06-29T13:27:07.873206Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:27:08.214108Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:05.936759Z"},"id":"a744af62-4022-474e-94a0-e1f3c1fb66bc","index":6,"match":{"http_filter":"http_header_match","http_filter_option":"host","http_filter_value":["example.com"],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-romantic-hoover","updated_at":"2023-06-29T13:27:08.214108Z"}],"total_count":6}' + body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:07:50.990299Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:50.570560Z"},"id":"e10ed9fd-947a-4d74-a9b7-e1db29d7a186","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"]},"name":"test-acl","updated_at":"2023-07-03T20:07:50.990299Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:07:51.326921Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:50.570560Z"},"id":"3ef7c8c4-207d-40f8-a332-489db9863ca4","index":2,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":true,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-friendly-williamson","updated_at":"2023-07-03T20:07:51.326921Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:07:51.749991Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:50.570560Z"},"id":"ba137c2e-57fe-4232-92fc-b1132e0dee22","index":3,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-hungry-clarke","updated_at":"2023-07-03T20:07:51.749991Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:07:52.125677Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:50.570560Z"},"id":"9f605564-05d8-4edc-8e22-69a4f766de47","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-lucid-ganguly","updated_at":"2023-07-03T20:07:52.125677Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2023-07-03T20:07:52.524010Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:50.570560Z"},"id":"64c881d9-1acc-4b92-8481-4fb04d3413de","index":5,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-keen-kirch","updated_at":"2023-07-03T20:07:52.524010Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:07:53.012363Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:50.570560Z"},"id":"5e88a1f3-b04f-4682-b1ba-ab68a698191e","index":6,"match":{"http_filter":"http_header_match","http_filter_option":"host","http_filter_value":["example.com"],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-focused-keller","updated_at":"2023-07-03T20:07:53.012363Z"}],"total_count":6}' headers: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:08 GMT + - Mon, 03 Jul 2023 20:07:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -873,7 +873,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30cc205d-4897-401d-bac2-c8f2368d20f3 + - f8e996fe-02db-468c-aefb-8e592b1949ef status: 200 OK code: 200 duration: "" @@ -884,19 +884,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c6b47cd5-7fca-4acc-bde4-e32e91f58310 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "321" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:09 GMT + - Mon, 03 Jul 2023 20:07:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -906,7 +906,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 623c59d7-ba11-4cea-870c-db022c981789 + - ed6f4945-0fb3-4e46-a4a5-339955fa4216 status: 200 OK code: 200 duration: "" @@ -917,19 +917,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/641b3663-8eb8-42ba-b29d-388d8962519d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/957a1d7b-20e5-4f6e-9068-0ce89e548eb9 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[{"created_at":"2023-06-29T12:04:05.551834Z","id":"a8adf25c-e8c6-46f4-8ee8-e121bf6de26c","ip_address":"10.64.142.25","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:27:08.552382Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[{"created_at":"2023-07-03T19:46:44.679933Z","id":"1b7fbeaa-c809-4be1-ac65-26773555f4b7","ip_address":"10.69.150.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:07:53.380624Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"}' headers: Content-Length: - - "1098" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:09 GMT + - Mon, 03 Jul 2023 20:07:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -939,7 +939,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba92ac7d-c920-4963-bfc2-0b1e1e1c604f + - 9af15316-5ef5-44c0-9466-c5317a1b29b9 status: 200 OK code: 200 duration: "" @@ -950,19 +950,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/641b3663-8eb8-42ba-b29d-388d8962519d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/957a1d7b-20e5-4f6e-9068-0ce89e548eb9 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[{"created_at":"2023-06-29T12:04:05.551834Z","id":"a8adf25c-e8c6-46f4-8ee8-e121bf6de26c","ip_address":"10.64.142.25","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:27:08.552382Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[{"created_at":"2023-07-03T19:46:44.679933Z","id":"1b7fbeaa-c809-4be1-ac65-26773555f4b7","ip_address":"10.69.150.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:07:53.380624Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"}' headers: Content-Length: - - "1098" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:09 GMT + - Mon, 03 Jul 2023 20:07:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -972,7 +972,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 192d40c8-423c-4bec-8261-ee84d4a77906 + - abf1cc62-641a-4fa8-ba3c-8c44871d1bf2 status: 200 OK code: 200 duration: "" @@ -983,19 +983,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/641b3663-8eb8-42ba-b29d-388d8962519d/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/957a1d7b-20e5-4f6e-9068-0ce89e548eb9/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:09 GMT + - Mon, 03 Jul 2023 20:07:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1005,7 +1005,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa712035-254a-43f4-8f79-3e53ef5a182d + - 76da192e-ecc7-464c-b38c-6b5ffdc36197 status: 200 OK code: 200 duration: "" @@ -1016,19 +1016,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/68cf7418-4982-444c-9a3c-8aec79447d7e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/6243a9f4-1b47-4602-b540-87869a069d91 method: GET response: - body: '{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[{"created_at":"2023-06-29T12:04:05.551834Z","id":"a8adf25c-e8c6-46f4-8ee8-e121bf6de26c","ip_address":"10.64.142.25","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:27:08.552382Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"}' + body: '{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[{"created_at":"2023-07-03T19:46:44.679933Z","id":"1b7fbeaa-c809-4be1-ac65-26773555f4b7","ip_address":"10.69.150.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:07:53.380624Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"}' headers: Content-Length: - - "1965" + - "1904" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:09 GMT + - Mon, 03 Jul 2023 20:07:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1038,7 +1038,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c051a20-1323-4db0-8821-f8c949984cf3 + - d31181f3-ce39-4281-918f-660e7feae8c8 status: 200 OK code: 200 duration: "" @@ -1049,19 +1049,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/641b3663-8eb8-42ba-b29d-388d8962519d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/957a1d7b-20e5-4f6e-9068-0ce89e548eb9 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[{"created_at":"2023-06-29T12:04:05.551834Z","id":"a8adf25c-e8c6-46f4-8ee8-e121bf6de26c","ip_address":"10.64.142.25","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:27:08.552382Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[{"created_at":"2023-07-03T19:46:44.679933Z","id":"1b7fbeaa-c809-4be1-ac65-26773555f4b7","ip_address":"10.69.150.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:07:53.380624Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"}' headers: Content-Length: - - "1098" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:09 GMT + - Mon, 03 Jul 2023 20:07:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1071,7 +1071,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8385eaa0-ba4a-4c3d-8bce-39ea9df14eaa + - 137e4c26-b869-4a8b-8709-283e52565244 status: 200 OK code: 200 duration: "" @@ -1082,19 +1082,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/bd2724e3-c922-4767-8a3c-054ed484bf00 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/61dd02bd-ee89-4e84-a04a-624acfe025e2 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:05.936759Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:50.570560Z"}' headers: Content-Length: - - "2904" + - "2815" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:09 GMT + - Mon, 03 Jul 2023 20:07:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1104,7 +1104,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d151c8e5-27b7-42dc-a7d1-d92a7089a736 + - 057f36f7-e4ea-493c-bf8a-0865da61b06e status: 200 OK code: 200 duration: "" @@ -1115,17 +1115,17 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/bd2724e3-c922-4767-8a3c-054ed484bf00/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/61dd02bd-ee89-4e84-a04a-624acfe025e2/acls?order_by=created_at_asc&page=1 method: GET response: - body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:27:06.345513Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:05.936759Z"},"id":"2b97c160-2b12-445c-b8d2-d2e1c0c82b9c","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"]},"name":"test-acl","updated_at":"2023-06-29T13:27:06.345513Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:27:06.719158Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:05.936759Z"},"id":"cecfedc7-f5cf-496b-b99e-be65143bf0b7","index":2,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":true,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-compassionate-cohen","updated_at":"2023-06-29T13:27:06.719158Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:27:07.125543Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:05.936759Z"},"id":"1658558c-844a-4021-bf3b-1cbd095581cf","index":3,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-jolly-cray","updated_at":"2023-06-29T13:27:07.125543Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:27:07.532573Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:05.936759Z"},"id":"b7d1ebd9-3eac-43a9-b728-9a5138b3e472","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-recursing-moore","updated_at":"2023-06-29T13:27:07.532573Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2023-06-29T13:27:07.873206Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:05.936759Z"},"id":"47ed673a-d762-4f5a-a346-eb871d235838","index":5,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-sad-gould","updated_at":"2023-06-29T13:27:07.873206Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:27:08.214108Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:05.936759Z"},"id":"a744af62-4022-474e-94a0-e1f3c1fb66bc","index":6,"match":{"http_filter":"http_header_match","http_filter_option":"host","http_filter_value":["example.com"],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-romantic-hoover","updated_at":"2023-06-29T13:27:08.214108Z"}],"total_count":6}' + body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:07:50.990299Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:50.570560Z"},"id":"e10ed9fd-947a-4d74-a9b7-e1db29d7a186","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"]},"name":"test-acl","updated_at":"2023-07-03T20:07:50.990299Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:07:51.326921Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:50.570560Z"},"id":"3ef7c8c4-207d-40f8-a332-489db9863ca4","index":2,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":true,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-friendly-williamson","updated_at":"2023-07-03T20:07:51.326921Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:07:51.749991Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:50.570560Z"},"id":"ba137c2e-57fe-4232-92fc-b1132e0dee22","index":3,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-hungry-clarke","updated_at":"2023-07-03T20:07:51.749991Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:07:52.125677Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:50.570560Z"},"id":"9f605564-05d8-4edc-8e22-69a4f766de47","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-lucid-ganguly","updated_at":"2023-07-03T20:07:52.125677Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2023-07-03T20:07:52.524010Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:50.570560Z"},"id":"64c881d9-1acc-4b92-8481-4fb04d3413de","index":5,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-keen-kirch","updated_at":"2023-07-03T20:07:52.524010Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:07:53.012363Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:50.570560Z"},"id":"5e88a1f3-b04f-4682-b1ba-ab68a698191e","index":6,"match":{"http_filter":"http_header_match","http_filter_option":"host","http_filter_value":["example.com"],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-focused-keller","updated_at":"2023-07-03T20:07:53.012363Z"}],"total_count":6}' headers: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:09 GMT + - Mon, 03 Jul 2023 20:07:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1135,7 +1135,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9197c897-27f5-4c54-a7ff-be45722d31fc + - a2c5114b-4fcc-4dda-ba89-a65bafaff67f status: 200 OK code: 200 duration: "" @@ -1146,19 +1146,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c6b47cd5-7fca-4acc-bde4-e32e91f58310 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "321" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:10 GMT + - Mon, 03 Jul 2023 20:07:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1168,7 +1168,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36abdfb9-371a-41c9-bbe1-d8bd4dd5e245 + - e6600840-135d-4ef0-87a9-53e625b42091 status: 200 OK code: 200 duration: "" @@ -1179,19 +1179,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/641b3663-8eb8-42ba-b29d-388d8962519d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/957a1d7b-20e5-4f6e-9068-0ce89e548eb9 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[{"created_at":"2023-06-29T12:04:05.551834Z","id":"a8adf25c-e8c6-46f4-8ee8-e121bf6de26c","ip_address":"10.64.142.25","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:27:08.552382Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[{"created_at":"2023-07-03T19:46:44.679933Z","id":"1b7fbeaa-c809-4be1-ac65-26773555f4b7","ip_address":"10.69.150.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:07:53.380624Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"}' headers: Content-Length: - - "1098" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:10 GMT + - Mon, 03 Jul 2023 20:07:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1201,7 +1201,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 68b6ec06-4b8b-4ef4-834c-18d65c9bd8ca + - 29bbc693-c827-47b9-8723-030bdbe29f46 status: 200 OK code: 200 duration: "" @@ -1212,19 +1212,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/641b3663-8eb8-42ba-b29d-388d8962519d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/957a1d7b-20e5-4f6e-9068-0ce89e548eb9 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[{"created_at":"2023-06-29T12:04:05.551834Z","id":"a8adf25c-e8c6-46f4-8ee8-e121bf6de26c","ip_address":"10.64.142.25","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:27:08.552382Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[{"created_at":"2023-07-03T19:46:44.679933Z","id":"1b7fbeaa-c809-4be1-ac65-26773555f4b7","ip_address":"10.69.150.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:07:53.380624Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"}' headers: Content-Length: - - "1098" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:10 GMT + - Mon, 03 Jul 2023 20:07:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1234,7 +1234,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 346e165a-5da4-4858-8c9d-b2dbc57a5378 + - ca715c49-0b9c-4779-bd74-f2b98fa7b13a status: 200 OK code: 200 duration: "" @@ -1245,19 +1245,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/641b3663-8eb8-42ba-b29d-388d8962519d/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/957a1d7b-20e5-4f6e-9068-0ce89e548eb9/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:10 GMT + - Mon, 03 Jul 2023 20:07:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1267,7 +1267,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7511b38b-25a4-40d6-9d5d-c815b72e73ba + - 6d27dd11-efe6-4e57-a598-71eafa8bd028 status: 200 OK code: 200 duration: "" @@ -1278,19 +1278,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/68cf7418-4982-444c-9a3c-8aec79447d7e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/6243a9f4-1b47-4602-b540-87869a069d91 method: GET response: - body: '{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[{"created_at":"2023-06-29T12:04:05.551834Z","id":"a8adf25c-e8c6-46f4-8ee8-e121bf6de26c","ip_address":"10.64.142.25","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:27:08.552382Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"}' + body: '{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[{"created_at":"2023-07-03T19:46:44.679933Z","id":"1b7fbeaa-c809-4be1-ac65-26773555f4b7","ip_address":"10.69.150.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:07:53.380624Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"}' headers: Content-Length: - - "1965" + - "1904" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:10 GMT + - Mon, 03 Jul 2023 20:07:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1300,7 +1300,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 49013fd8-d01b-44af-8bf0-8cf2d847eb31 + - 772b3162-6ec2-4784-a3c8-16d011f24e9e status: 200 OK code: 200 duration: "" @@ -1311,19 +1311,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/641b3663-8eb8-42ba-b29d-388d8962519d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/957a1d7b-20e5-4f6e-9068-0ce89e548eb9 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[{"created_at":"2023-06-29T12:04:05.551834Z","id":"a8adf25c-e8c6-46f4-8ee8-e121bf6de26c","ip_address":"10.64.142.25","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:27:08.552382Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[{"created_at":"2023-07-03T19:46:44.679933Z","id":"1b7fbeaa-c809-4be1-ac65-26773555f4b7","ip_address":"10.69.150.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:07:53.380624Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"}' headers: Content-Length: - - "1098" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:10 GMT + - Mon, 03 Jul 2023 20:07:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1333,7 +1333,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82bed7a5-d5b4-4cd5-99ce-44d2f7326874 + - bd81c36f-9417-4f1b-a4e0-5afc44959377 status: 200 OK code: 200 duration: "" @@ -1344,19 +1344,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/bd2724e3-c922-4767-8a3c-054ed484bf00 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/61dd02bd-ee89-4e84-a04a-624acfe025e2 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:05.936759Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:50.570560Z"}' headers: Content-Length: - - "2904" + - "2815" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:10 GMT + - Mon, 03 Jul 2023 20:07:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1366,7 +1366,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7627ace-8abf-4ca3-8e0f-0ec8d6e60627 + - fdf63824-0884-4a10-9b93-666afec849f5 status: 200 OK code: 200 duration: "" @@ -1377,17 +1377,17 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/bd2724e3-c922-4767-8a3c-054ed484bf00/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/61dd02bd-ee89-4e84-a04a-624acfe025e2/acls?order_by=created_at_asc&page=1 method: GET response: - body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:27:06.345513Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:05.936759Z"},"id":"2b97c160-2b12-445c-b8d2-d2e1c0c82b9c","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"]},"name":"test-acl","updated_at":"2023-06-29T13:27:06.345513Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:27:06.719158Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:05.936759Z"},"id":"cecfedc7-f5cf-496b-b99e-be65143bf0b7","index":2,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":true,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-compassionate-cohen","updated_at":"2023-06-29T13:27:06.719158Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:27:07.125543Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:05.936759Z"},"id":"1658558c-844a-4021-bf3b-1cbd095581cf","index":3,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-jolly-cray","updated_at":"2023-06-29T13:27:07.125543Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:27:07.532573Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:05.936759Z"},"id":"b7d1ebd9-3eac-43a9-b728-9a5138b3e472","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-recursing-moore","updated_at":"2023-06-29T13:27:07.532573Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2023-06-29T13:27:07.873206Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:05.936759Z"},"id":"47ed673a-d762-4f5a-a346-eb871d235838","index":5,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-sad-gould","updated_at":"2023-06-29T13:27:07.873206Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:27:08.214108Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:05.936759Z"},"id":"a744af62-4022-474e-94a0-e1f3c1fb66bc","index":6,"match":{"http_filter":"http_header_match","http_filter_option":"host","http_filter_value":["example.com"],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-romantic-hoover","updated_at":"2023-06-29T13:27:08.214108Z"}],"total_count":6}' + body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:07:50.990299Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:50.570560Z"},"id":"e10ed9fd-947a-4d74-a9b7-e1db29d7a186","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"]},"name":"test-acl","updated_at":"2023-07-03T20:07:50.990299Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:07:51.326921Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:50.570560Z"},"id":"3ef7c8c4-207d-40f8-a332-489db9863ca4","index":2,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":true,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-friendly-williamson","updated_at":"2023-07-03T20:07:51.326921Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:07:51.749991Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:50.570560Z"},"id":"ba137c2e-57fe-4232-92fc-b1132e0dee22","index":3,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-hungry-clarke","updated_at":"2023-07-03T20:07:51.749991Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:07:52.125677Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:50.570560Z"},"id":"9f605564-05d8-4edc-8e22-69a4f766de47","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-lucid-ganguly","updated_at":"2023-07-03T20:07:52.125677Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2023-07-03T20:07:52.524010Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:50.570560Z"},"id":"64c881d9-1acc-4b92-8481-4fb04d3413de","index":5,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-keen-kirch","updated_at":"2023-07-03T20:07:52.524010Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:07:53.012363Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:50.570560Z"},"id":"5e88a1f3-b04f-4682-b1ba-ab68a698191e","index":6,"match":{"http_filter":"http_header_match","http_filter_option":"host","http_filter_value":["example.com"],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-focused-keller","updated_at":"2023-07-03T20:07:53.012363Z"}],"total_count":6}' headers: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:10 GMT + - Mon, 03 Jul 2023 20:07:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1397,7 +1397,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65c495b4-e31b-4da9-930b-7813cfa221d6 + - a541465d-5a74-423f-8d48-e0c378639075 status: 200 OK code: 200 duration: "" @@ -1408,19 +1408,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/641b3663-8eb8-42ba-b29d-388d8962519d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/957a1d7b-20e5-4f6e-9068-0ce89e548eb9 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[{"created_at":"2023-06-29T12:04:05.551834Z","id":"a8adf25c-e8c6-46f4-8ee8-e121bf6de26c","ip_address":"10.64.142.25","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:27:08.552382Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[{"created_at":"2023-07-03T19:46:44.679933Z","id":"1b7fbeaa-c809-4be1-ac65-26773555f4b7","ip_address":"10.69.150.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:07:53.380624Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"}' headers: Content-Length: - - "1098" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:11 GMT + - Mon, 03 Jul 2023 20:07:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1430,12 +1430,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31df8b86-fc26-4ba3-922f-44245c29e73a + - f286f694-c516-44a4-97fd-24eac64b03ed status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-test","inbound_port":80,"backend_id":"68cf7418-4982-444c-9a3c-8aec79447d7e","certificate_ids":null,"enable_http3":false,"timeout_client":30000}' + body: '{"name":"tf-test","inbound_port":80,"backend_id":"6243a9f4-1b47-4602-b540-87869a069d91","certificate_ids":null,"enable_http3":false,"timeout_client":30000}' form: {} headers: Content-Type: @@ -1443,19 +1443,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/bd2724e3-c922-4767-8a3c-054ed484bf00 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/61dd02bd-ee89-4e84-a04a-624acfe025e2 method: PUT response: - body: '{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[{"created_at":"2023-06-29T12:04:05.551834Z","id":"a8adf25c-e8c6-46f4-8ee8-e121bf6de26c","ip_address":"10.64.142.25","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:27:11.362204475Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:11.344080295Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[{"created_at":"2023-07-03T19:46:44.679933Z","id":"1b7fbeaa-c809-4be1-ac65-26773555f4b7","ip_address":"10.69.150.67","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:07:56.606202854Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:56.581981274Z"}' headers: Content-Length: - - "3130" + - "3035" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:11 GMT + - Mon, 03 Jul 2023 20:07:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1465,7 +1465,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d0be0f25-d4ac-40c5-a2d1-b5352628a89e + - a7049c6f-d40c-473e-93be-602140aea0c9 status: 200 OK code: 200 duration: "" @@ -1476,17 +1476,17 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/bd2724e3-c922-4767-8a3c-054ed484bf00/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/61dd02bd-ee89-4e84-a04a-624acfe025e2/acls?order_by=created_at_asc&page=1 method: GET response: - body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:27:06.345513Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:11.344080Z"},"id":"2b97c160-2b12-445c-b8d2-d2e1c0c82b9c","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"]},"name":"test-acl","updated_at":"2023-06-29T13:27:06.345513Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:27:06.719158Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:11.344080Z"},"id":"cecfedc7-f5cf-496b-b99e-be65143bf0b7","index":2,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":true,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-compassionate-cohen","updated_at":"2023-06-29T13:27:06.719158Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:27:07.125543Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:11.344080Z"},"id":"1658558c-844a-4021-bf3b-1cbd095581cf","index":3,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-jolly-cray","updated_at":"2023-06-29T13:27:07.125543Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:27:07.532573Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:11.344080Z"},"id":"b7d1ebd9-3eac-43a9-b728-9a5138b3e472","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-recursing-moore","updated_at":"2023-06-29T13:27:07.532573Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2023-06-29T13:27:07.873206Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:11.344080Z"},"id":"47ed673a-d762-4f5a-a346-eb871d235838","index":5,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-sad-gould","updated_at":"2023-06-29T13:27:07.873206Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:27:08.214108Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:11.344080Z"},"id":"a744af62-4022-474e-94a0-e1f3c1fb66bc","index":6,"match":{"http_filter":"http_header_match","http_filter_option":"host","http_filter_value":["example.com"],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-romantic-hoover","updated_at":"2023-06-29T13:27:08.214108Z"}],"total_count":6}' + body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:07:50.990299Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:56.581981Z"},"id":"e10ed9fd-947a-4d74-a9b7-e1db29d7a186","index":1,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"]},"name":"test-acl","updated_at":"2023-07-03T20:07:50.990299Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:07:51.326921Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:56.581981Z"},"id":"3ef7c8c4-207d-40f8-a332-489db9863ca4","index":2,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":true,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-friendly-williamson","updated_at":"2023-07-03T20:07:51.326921Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:07:51.749991Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:56.581981Z"},"id":"ba137c2e-57fe-4232-92fc-b1132e0dee22","index":3,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["criteria1","criteria2"],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-hungry-clarke","updated_at":"2023-07-03T20:07:51.749991Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:07:52.125677Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:56.581981Z"},"id":"9f605564-05d8-4edc-8e22-69a4f766de47","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-lucid-ganguly","updated_at":"2023-07-03T20:07:52.125677Z"},{"action":{"redirect":null,"type":"deny"},"created_at":"2023-07-03T20:07:52.524010Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:56.581981Z"},"id":"64c881d9-1acc-4b92-8481-4fb04d3413de","index":5,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-keen-kirch","updated_at":"2023-07-03T20:07:52.524010Z"},{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:07:53.012363Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:56.581981Z"},"id":"5e88a1f3-b04f-4682-b1ba-ab68a698191e","index":6,"match":{"http_filter":"http_header_match","http_filter_option":"host","http_filter_value":["example.com"],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"tf-lb-acl-focused-keller","updated_at":"2023-07-03T20:07:53.012363Z"}],"total_count":6}' headers: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:11 GMT + - Mon, 03 Jul 2023 20:07:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1496,7 +1496,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 143f7c87-c1ee-42ef-9b91-ba9ce8f4d4d3 + - 9baf723e-8f59-4009-aaeb-89d73f973a2d status: 200 OK code: 200 duration: "" @@ -1509,19 +1509,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/2b97c160-2b12-445c-b8d2-d2e1c0c82b9c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/e10ed9fd-947a-4d74-a9b7-e1db29d7a186 method: PUT response: - body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:27:06.345513Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[{"created_at":"2023-06-29T12:04:05.551834Z","id":"a8adf25c-e8c6-46f4-8ee8-e121bf6de26c","ip_address":"10.64.142.25","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:27:11.767802023Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:11.344080Z"},"id":"2b97c160-2b12-445c-b8d2-d2e1c0c82b9c","index":1,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["foo","bar"],"invert":false,"ip_subnet":["10.0.0.10"]},"name":"test-acl","updated_at":"2023-06-29T13:27:11.742940585Z"}' + body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:07:50.990299Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[{"created_at":"2023-07-03T19:46:44.679933Z","id":"1b7fbeaa-c809-4be1-ac65-26773555f4b7","ip_address":"10.69.150.67","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:07:56.988460499Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:56.581981Z"},"id":"e10ed9fd-947a-4d74-a9b7-e1db29d7a186","index":1,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["foo","bar"],"invert":false,"ip_subnet":["10.0.0.10"]},"name":"test-acl","updated_at":"2023-07-03T20:07:56.966958963Z"}' headers: Content-Length: - - "3512" + - "3403" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:11 GMT + - Mon, 03 Jul 2023 20:07:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1531,7 +1531,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f7d7a30e-4102-42ca-936c-48f76ed5d5e6 + - 6a4dc6e8-2705-4ded-b200-190bfabe55ea status: 200 OK code: 200 duration: "" @@ -1542,7 +1542,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/cecfedc7-f5cf-496b-b99e-be65143bf0b7 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/3ef7c8c4-207d-40f8-a332-489db9863ca4 method: DELETE response: body: "" @@ -1552,7 +1552,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:12 GMT + - Mon, 03 Jul 2023 20:07:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1562,7 +1562,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97f3f33c-6cc9-417d-a746-ad4d2435596e + - 67c9c725-a0e3-4f27-8edf-9decb903dd3e status: 204 No Content code: 204 duration: "" @@ -1573,7 +1573,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/1658558c-844a-4021-bf3b-1cbd095581cf + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/ba137c2e-57fe-4232-92fc-b1132e0dee22 method: DELETE response: body: "" @@ -1583,7 +1583,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:12 GMT + - Mon, 03 Jul 2023 20:07:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1593,7 +1593,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f916754c-f96e-430b-922b-fd355444c760 + - 17185a7f-d8a7-44ec-94bf-975212976264 status: 204 No Content code: 204 duration: "" @@ -1604,7 +1604,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/b7d1ebd9-3eac-43a9-b728-9a5138b3e472 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/9f605564-05d8-4edc-8e22-69a4f766de47 method: DELETE response: body: "" @@ -1614,7 +1614,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:12 GMT + - Mon, 03 Jul 2023 20:07:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1624,7 +1624,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11721efe-4f57-43b0-8441-b1d5037e15d4 + - e4aba796-8f61-40c2-8975-daf4b5ccdd1d status: 204 No Content code: 204 duration: "" @@ -1635,7 +1635,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/47ed673a-d762-4f5a-a346-eb871d235838 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/64c881d9-1acc-4b92-8481-4fb04d3413de method: DELETE response: body: "" @@ -1645,7 +1645,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:13 GMT + - Mon, 03 Jul 2023 20:07:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1655,7 +1655,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 39661573-f2ff-4c9d-818d-a7902b4ee4e9 + - 0e7cb1e9-9d09-4fab-9ec0-19ff7374aa03 status: 204 No Content code: 204 duration: "" @@ -1666,7 +1666,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/a744af62-4022-474e-94a0-e1f3c1fb66bc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/5e88a1f3-b04f-4682-b1ba-ab68a698191e method: DELETE response: body: "" @@ -1676,7 +1676,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:13 GMT + - Mon, 03 Jul 2023 20:07:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1686,7 +1686,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6513bb84-06ad-4512-94c9-5c5b3a60d9c4 + - 111f0ba1-a03b-4782-9028-5db44789f412 status: 204 No Content code: 204 duration: "" @@ -1697,19 +1697,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/bd2724e3-c922-4767-8a3c-054ed484bf00 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/61dd02bd-ee89-4e84-a04a-624acfe025e2 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:11.344080Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:56.581981Z"}' headers: Content-Length: - - "2904" + - "2815" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:13 GMT + - Mon, 03 Jul 2023 20:07:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1719,7 +1719,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ed9d69c-f4ea-47c0-a25b-9f330ff7e763 + - 86634feb-0a49-4e47-8336-58a53c5dcb8a status: 200 OK code: 200 duration: "" @@ -1730,19 +1730,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/bd2724e3-c922-4767-8a3c-054ed484bf00/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/61dd02bd-ee89-4e84-a04a-624acfe025e2/acls?order_by=created_at_asc&page=1 method: GET response: - body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:27:06.345513Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:11.344080Z"},"id":"2b97c160-2b12-445c-b8d2-d2e1c0c82b9c","index":1,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["foo","bar"],"invert":false,"ip_subnet":["10.0.0.10"]},"name":"test-acl","updated_at":"2023-06-29T13:27:11.742941Z"}],"total_count":1}' + body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:07:50.990299Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:56.581981Z"},"id":"e10ed9fd-947a-4d74-a9b7-e1db29d7a186","index":1,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["foo","bar"],"invert":false,"ip_subnet":["10.0.0.10"]},"name":"test-acl","updated_at":"2023-07-03T20:07:56.966959Z"}],"total_count":1}' headers: Content-Length: - - "3314" + - "3210" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:13 GMT + - Mon, 03 Jul 2023 20:07:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1752,7 +1752,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ded4ec6c-2298-4213-bde2-c707fac269ee + - 6a31e2e0-b044-41eb-862a-1fd3dd4ca0c9 status: 200 OK code: 200 duration: "" @@ -1763,19 +1763,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/bd2724e3-c922-4767-8a3c-054ed484bf00/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/61dd02bd-ee89-4e84-a04a-624acfe025e2/acls?order_by=created_at_asc&page=1 method: GET response: - body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:27:06.345513Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:11.344080Z"},"id":"2b97c160-2b12-445c-b8d2-d2e1c0c82b9c","index":1,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["foo","bar"],"invert":false,"ip_subnet":["10.0.0.10"]},"name":"test-acl","updated_at":"2023-06-29T13:27:11.742941Z"}],"total_count":1}' + body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:07:50.990299Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:56.581981Z"},"id":"e10ed9fd-947a-4d74-a9b7-e1db29d7a186","index":1,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["foo","bar"],"invert":false,"ip_subnet":["10.0.0.10"]},"name":"test-acl","updated_at":"2023-07-03T20:07:56.966959Z"}],"total_count":1}' headers: Content-Length: - - "3314" + - "3210" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:13 GMT + - Mon, 03 Jul 2023 20:07:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1785,7 +1785,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f7b08c97-eec7-48c0-b19b-d09902c8077a + - 175cafb3-25eb-46ee-83c4-b7043d4b728a status: 200 OK code: 200 duration: "" @@ -1796,19 +1796,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c6b47cd5-7fca-4acc-bde4-e32e91f58310 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "321" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:14 GMT + - Mon, 03 Jul 2023 20:07:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1818,7 +1818,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 973e3bc4-e693-48da-856d-34356b56a705 + - a5bedb20-e048-493c-9352-0ef50d50541a status: 200 OK code: 200 duration: "" @@ -1829,19 +1829,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/641b3663-8eb8-42ba-b29d-388d8962519d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/957a1d7b-20e5-4f6e-9068-0ce89e548eb9 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[{"created_at":"2023-06-29T12:04:05.551834Z","id":"a8adf25c-e8c6-46f4-8ee8-e121bf6de26c","ip_address":"10.64.142.25","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:27:13.517013Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[{"created_at":"2023-07-03T19:46:44.679933Z","id":"1b7fbeaa-c809-4be1-ac65-26773555f4b7","ip_address":"10.69.150.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:07:58.783350Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"}' headers: Content-Length: - - "1098" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:14 GMT + - Mon, 03 Jul 2023 20:07:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1851,7 +1851,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 245b3988-547d-4361-af2d-a66db5c12f11 + - 117ba4d9-eb63-4008-b1c6-559bc9fe1164 status: 200 OK code: 200 duration: "" @@ -1862,19 +1862,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/641b3663-8eb8-42ba-b29d-388d8962519d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/957a1d7b-20e5-4f6e-9068-0ce89e548eb9 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[{"created_at":"2023-06-29T12:04:05.551834Z","id":"a8adf25c-e8c6-46f4-8ee8-e121bf6de26c","ip_address":"10.64.142.25","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:27:13.517013Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[{"created_at":"2023-07-03T19:46:44.679933Z","id":"1b7fbeaa-c809-4be1-ac65-26773555f4b7","ip_address":"10.69.150.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:07:58.783350Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"}' headers: Content-Length: - - "1098" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:14 GMT + - Mon, 03 Jul 2023 20:07:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1884,7 +1884,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 322eddca-12c0-48ba-9fc1-e90f82591fb7 + - 2b2c6cdf-4191-4304-8a9d-3b7f6bf1ffc7 status: 200 OK code: 200 duration: "" @@ -1895,19 +1895,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/641b3663-8eb8-42ba-b29d-388d8962519d/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/957a1d7b-20e5-4f6e-9068-0ce89e548eb9/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:14 GMT + - Mon, 03 Jul 2023 20:07:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1917,7 +1917,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e0c4e2f-6e3b-401e-8ee1-6530c2d0ca11 + - d2a7c2d0-9ca9-4bdb-b2b6-573f56819168 status: 200 OK code: 200 duration: "" @@ -1928,19 +1928,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/68cf7418-4982-444c-9a3c-8aec79447d7e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/6243a9f4-1b47-4602-b540-87869a069d91 method: GET response: - body: '{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[{"created_at":"2023-06-29T12:04:05.551834Z","id":"a8adf25c-e8c6-46f4-8ee8-e121bf6de26c","ip_address":"10.64.142.25","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:27:13.517013Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"}' + body: '{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[{"created_at":"2023-07-03T19:46:44.679933Z","id":"1b7fbeaa-c809-4be1-ac65-26773555f4b7","ip_address":"10.69.150.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:07:58.783350Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"}' headers: Content-Length: - - "1965" + - "1904" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:14 GMT + - Mon, 03 Jul 2023 20:07:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1950,7 +1950,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dad536bc-5631-4b6a-9777-bbfd27cb1911 + - 89b97b0c-1750-4181-ae07-98c9ab12135f status: 200 OK code: 200 duration: "" @@ -1961,19 +1961,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/641b3663-8eb8-42ba-b29d-388d8962519d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/957a1d7b-20e5-4f6e-9068-0ce89e548eb9 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[{"created_at":"2023-06-29T12:04:05.551834Z","id":"a8adf25c-e8c6-46f4-8ee8-e121bf6de26c","ip_address":"10.64.142.25","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:27:13.517013Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[{"created_at":"2023-07-03T19:46:44.679933Z","id":"1b7fbeaa-c809-4be1-ac65-26773555f4b7","ip_address":"10.69.150.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:07:58.783350Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"}' headers: Content-Length: - - "1098" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:14 GMT + - Mon, 03 Jul 2023 20:07:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1983,7 +1983,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b50f930b-a0bb-447d-b231-9f5b8ccb846d + - 45f84d5c-4efb-435e-9d76-0555faf4f3b8 status: 200 OK code: 200 duration: "" @@ -1994,19 +1994,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/bd2724e3-c922-4767-8a3c-054ed484bf00 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/61dd02bd-ee89-4e84-a04a-624acfe025e2 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:11.344080Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:56.581981Z"}' headers: Content-Length: - - "2904" + - "2815" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:14 GMT + - Mon, 03 Jul 2023 20:07:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2016,7 +2016,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a55bb9e-91be-4898-9e49-28f6c50678a1 + - 146691d0-0dee-4a39-b8cb-2ebb26c34639 status: 200 OK code: 200 duration: "" @@ -2027,19 +2027,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/bd2724e3-c922-4767-8a3c-054ed484bf00/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/61dd02bd-ee89-4e84-a04a-624acfe025e2/acls?order_by=created_at_asc&page=1 method: GET response: - body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:27:06.345513Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:11.344080Z"},"id":"2b97c160-2b12-445c-b8d2-d2e1c0c82b9c","index":1,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["foo","bar"],"invert":false,"ip_subnet":["10.0.0.10"]},"name":"test-acl","updated_at":"2023-06-29T13:27:11.742941Z"}],"total_count":1}' + body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:07:50.990299Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:56.581981Z"},"id":"e10ed9fd-947a-4d74-a9b7-e1db29d7a186","index":1,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["foo","bar"],"invert":false,"ip_subnet":["10.0.0.10"]},"name":"test-acl","updated_at":"2023-07-03T20:07:56.966959Z"}],"total_count":1}' headers: Content-Length: - - "3314" + - "3210" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:14 GMT + - Mon, 03 Jul 2023 20:08:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2049,7 +2049,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa194c80-14fc-4788-a8c3-aabf85813523 + - c386227c-1f1d-44a6-afd7-3b58d8fd6dcb status: 200 OK code: 200 duration: "" @@ -2060,19 +2060,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c6b47cd5-7fca-4acc-bde4-e32e91f58310 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "321" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:15 GMT + - Mon, 03 Jul 2023 20:08:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2082,7 +2082,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00c87611-22c2-4b46-9c5b-a279e8ad7abb + - 5941403b-5142-4c98-bf83-730409e84098 status: 200 OK code: 200 duration: "" @@ -2093,19 +2093,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/641b3663-8eb8-42ba-b29d-388d8962519d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/957a1d7b-20e5-4f6e-9068-0ce89e548eb9 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[{"created_at":"2023-06-29T12:04:05.551834Z","id":"a8adf25c-e8c6-46f4-8ee8-e121bf6de26c","ip_address":"10.64.142.25","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:27:13.517013Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[{"created_at":"2023-07-03T19:46:44.679933Z","id":"1b7fbeaa-c809-4be1-ac65-26773555f4b7","ip_address":"10.69.150.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:07:58.783350Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"}' headers: Content-Length: - - "1098" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:15 GMT + - Mon, 03 Jul 2023 20:08:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2115,7 +2115,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 757bb8fc-be9f-4212-8eac-dab22892bc07 + - 3dceec30-c484-40ff-875a-d5e139c6a5dd status: 200 OK code: 200 duration: "" @@ -2126,19 +2126,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/68cf7418-4982-444c-9a3c-8aec79447d7e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/6243a9f4-1b47-4602-b540-87869a069d91 method: GET response: - body: '{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[{"created_at":"2023-06-29T12:04:05.551834Z","id":"a8adf25c-e8c6-46f4-8ee8-e121bf6de26c","ip_address":"10.64.142.25","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:27:13.517013Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"}' + body: '{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[{"created_at":"2023-07-03T19:46:44.679933Z","id":"1b7fbeaa-c809-4be1-ac65-26773555f4b7","ip_address":"10.69.150.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:07:58.783350Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"}' headers: Content-Length: - - "1965" + - "1904" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:15 GMT + - Mon, 03 Jul 2023 20:08:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2148,7 +2148,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96c1afb5-b86f-45a7-985e-01568b84b039 + - 022000a3-92f2-40a0-95d0-009043d5f066 status: 200 OK code: 200 duration: "" @@ -2159,19 +2159,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/bd2724e3-c922-4767-8a3c-054ed484bf00 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/61dd02bd-ee89-4e84-a04a-624acfe025e2 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:11.344080Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:56.581981Z"}' headers: Content-Length: - - "2904" + - "2815" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:15 GMT + - Mon, 03 Jul 2023 20:08:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2181,7 +2181,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 153eaeed-c5a2-4f65-96f5-c2efdc6855b1 + - d36fc5b6-3568-42e2-a876-7ab59f5913c2 status: 200 OK code: 200 duration: "" @@ -2192,19 +2192,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/641b3663-8eb8-42ba-b29d-388d8962519d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/957a1d7b-20e5-4f6e-9068-0ce89e548eb9 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[{"created_at":"2023-06-29T12:04:05.551834Z","id":"a8adf25c-e8c6-46f4-8ee8-e121bf6de26c","ip_address":"10.64.142.25","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:27:13.517013Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[{"created_at":"2023-07-03T19:46:44.679933Z","id":"1b7fbeaa-c809-4be1-ac65-26773555f4b7","ip_address":"10.69.150.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:07:58.783350Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"}' headers: Content-Length: - - "1098" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:15 GMT + - Mon, 03 Jul 2023 20:08:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2214,7 +2214,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 994492e4-1d60-4ff0-be79-ba844e87862a + - 7fd09cd7-7fb9-4fa4-a8a5-c6155c3fe220 status: 200 OK code: 200 duration: "" @@ -2225,19 +2225,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/641b3663-8eb8-42ba-b29d-388d8962519d/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/957a1d7b-20e5-4f6e-9068-0ce89e548eb9/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:15 GMT + - Mon, 03 Jul 2023 20:08:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2247,7 +2247,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34614f73-0366-472a-a077-5afbbcde5f02 + - f79cd696-631d-40ec-a109-5d1bc9de5b84 status: 200 OK code: 200 duration: "" @@ -2258,19 +2258,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/641b3663-8eb8-42ba-b29d-388d8962519d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/957a1d7b-20e5-4f6e-9068-0ce89e548eb9 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[{"created_at":"2023-06-29T12:04:05.551834Z","id":"a8adf25c-e8c6-46f4-8ee8-e121bf6de26c","ip_address":"10.64.142.25","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:27:13.517013Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[{"created_at":"2023-07-03T19:46:44.679933Z","id":"1b7fbeaa-c809-4be1-ac65-26773555f4b7","ip_address":"10.69.150.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:07:58.783350Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"}' headers: Content-Length: - - "1098" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:15 GMT + - Mon, 03 Jul 2023 20:08:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2280,7 +2280,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e8ab1710-bed2-4419-b0b9-0863cc7975fb + - 53e3fdbf-0d00-4272-b4f3-195db1581509 status: 200 OK code: 200 duration: "" @@ -2291,19 +2291,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/bd2724e3-c922-4767-8a3c-054ed484bf00/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/61dd02bd-ee89-4e84-a04a-624acfe025e2/acls?order_by=created_at_asc&page=1 method: GET response: - body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:27:06.345513Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:27:04.933697Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"68cf7418-4982-444c-9a3c-8aec79447d7e","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-driscoll","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:27:04.933697Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:27:05.528089Z","enable_http3":false,"id":"bd2724e3-c922-4767-8a3c-054ed484bf00","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":1,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:27:11.344080Z"},"id":"2b97c160-2b12-445c-b8d2-d2e1c0c82b9c","index":1,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["foo","bar"],"invert":false,"ip_subnet":["10.0.0.10"]},"name":"test-acl","updated_at":"2023-06-29T13:27:11.742941Z"}],"total_count":1}' + body: '{"acls":[{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:07:50.990299Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:07:49.473277Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"6243a9f4-1b47-4602-b540-87869a069d91","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-sharp-turing","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:07:49.473277Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:07:50.169609Z","enable_http3":false,"id":"61dd02bd-ee89-4e84-a04a-624acfe025e2","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":1,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:07:56.581981Z"},"id":"e10ed9fd-947a-4d74-a9b7-e1db29d7a186","index":1,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["foo","bar"],"invert":false,"ip_subnet":["10.0.0.10"]},"name":"test-acl","updated_at":"2023-07-03T20:07:56.966959Z"}],"total_count":1}' headers: Content-Length: - - "3314" + - "3210" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:15 GMT + - Mon, 03 Jul 2023 20:08:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2313,7 +2313,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5015473-09ef-46ed-bdee-d67d98457c91 + - 885a8676-9cc8-40b9-a11b-83d08677477f status: 200 OK code: 200 duration: "" @@ -2324,7 +2324,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/bd2724e3-c922-4767-8a3c-054ed484bf00 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/61dd02bd-ee89-4e84-a04a-624acfe025e2 method: DELETE response: body: "" @@ -2334,7 +2334,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:15 GMT + - Mon, 03 Jul 2023 20:08:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2344,7 +2344,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9da85b5d-3b4d-4414-88b7-4f915d7131f8 + - 813bef77-7f18-4ecb-ba08-a514f762cc89 status: 204 No Content code: 204 duration: "" @@ -2355,19 +2355,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/641b3663-8eb8-42ba-b29d-388d8962519d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/957a1d7b-20e5-4f6e-9068-0ce89e548eb9 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":0,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[{"created_at":"2023-06-29T12:04:05.551834Z","id":"a8adf25c-e8c6-46f4-8ee8-e121bf6de26c","ip_address":"10.64.142.25","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:27:15.882205Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":0,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[{"created_at":"2023-07-03T19:46:44.679933Z","id":"1b7fbeaa-c809-4be1-ac65-26773555f4b7","ip_address":"10.69.150.67","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:08:01.232019Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"}' headers: Content-Length: - - "1100" + - "1070" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:16 GMT + - Mon, 03 Jul 2023 20:08:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2377,7 +2377,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dfa2925c-c425-495b-b38e-2d144478fce4 + - 07d592d4-d439-492a-8fd9-b71db44b4dca status: 200 OK code: 200 duration: "" @@ -2388,19 +2388,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/641b3663-8eb8-42ba-b29d-388d8962519d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/957a1d7b-20e5-4f6e-9068-0ce89e548eb9 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":0,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[{"created_at":"2023-06-29T12:04:05.551834Z","id":"a8adf25c-e8c6-46f4-8ee8-e121bf6de26c","ip_address":"10.64.142.25","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:27:16.121434Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":0,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[{"created_at":"2023-07-03T19:46:44.679933Z","id":"1b7fbeaa-c809-4be1-ac65-26773555f4b7","ip_address":"10.69.150.67","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:08:01.232019Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"}' headers: Content-Length: - - "1098" + - "1070" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:16 GMT + - Mon, 03 Jul 2023 20:08:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2410,7 +2410,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b68ba54-2f40-485f-b744-63cc023ce582 + - 058da612-c8d2-4363-b01d-0afd22438660 status: 200 OK code: 200 duration: "" @@ -2421,7 +2421,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/68cf7418-4982-444c-9a3c-8aec79447d7e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/6243a9f4-1b47-4602-b540-87869a069d91 method: DELETE response: body: "" @@ -2431,7 +2431,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:16 GMT + - Mon, 03 Jul 2023 20:08:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2441,7 +2441,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7177ddcb-3e55-46c1-ad4c-17cfad826869 + - a03dadad-3ce9-4a7b-ab0e-036972b33167 status: 204 No Content code: 204 duration: "" @@ -2452,19 +2452,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/641b3663-8eb8-42ba-b29d-388d8962519d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/957a1d7b-20e5-4f6e-9068-0ce89e548eb9 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":0,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[{"created_at":"2023-06-29T12:04:05.551834Z","id":"a8adf25c-e8c6-46f4-8ee8-e121bf6de26c","ip_address":"10.64.142.25","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:27:16.357510Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":0,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[{"created_at":"2023-07-03T19:46:44.679933Z","id":"1b7fbeaa-c809-4be1-ac65-26773555f4b7","ip_address":"10.69.150.67","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:08:01.649443Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"}' headers: Content-Length: - - "1100" + - "1070" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:16 GMT + - Mon, 03 Jul 2023 20:08:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2474,7 +2474,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a942a772-044b-4ef3-9b7f-086a304d5e1e + - f1c762d4-d5aa-45a9-8dae-fd563deaf72e status: 200 OK code: 200 duration: "" @@ -2485,19 +2485,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/641b3663-8eb8-42ba-b29d-388d8962519d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/957a1d7b-20e5-4f6e-9068-0ce89e548eb9 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":0,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[{"created_at":"2023-06-29T12:04:05.551834Z","id":"a8adf25c-e8c6-46f4-8ee8-e121bf6de26c","ip_address":"10.64.142.25","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:27:16.610675Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:26:36.622225Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":0,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[{"created_at":"2023-07-03T19:46:44.679933Z","id":"1b7fbeaa-c809-4be1-ac65-26773555f4b7","ip_address":"10.69.150.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:08:01.859843Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:07:21.335909Z","zone":"fr-par-1"}' headers: Content-Length: - - "1098" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:16 GMT + - Mon, 03 Jul 2023 20:08:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2507,7 +2507,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 43cccd03-bf16-4dae-b9e1-28f38eb2cd56 + - 43b4bc59-c531-42ab-bef1-8e3c188781ee status: 200 OK code: 200 duration: "" @@ -2518,7 +2518,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/641b3663-8eb8-42ba-b29d-388d8962519d?release_ip=false + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/957a1d7b-20e5-4f6e-9068-0ce89e548eb9?release_ip=false method: DELETE response: body: "" @@ -2528,7 +2528,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:16 GMT + - Mon, 03 Jul 2023 20:08:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2538,7 +2538,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a547c64-05e3-420b-9e26-6e3e402c1df4 + - 0f37cab6-eec5-463d-9775-0ee871dfa2e2 status: 204 No Content code: 204 duration: "" @@ -2549,19 +2549,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/641b3663-8eb8-42ba-b29d-388d8962519d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/957a1d7b-20e5-4f6e-9068-0ce89e548eb9 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:26:34.326149Z","description":"","frontend_count":0,"id":"641b3663-8eb8-42ba-b29d-388d8962519d","instances":[{"created_at":"2023-06-29T12:04:05.551834Z","id":"a8adf25c-e8c6-46f4-8ee8-e121bf6de26c","ip_address":"10.64.142.25","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:27:16.610675Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"641b3663-8eb8-42ba-b29d-388d8962519d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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":"2023-06-29T13:27:16.774263Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:07:18.803943Z","description":"","frontend_count":0,"id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","instances":[{"created_at":"2023-07-03T19:46:44.679933Z","id":"1b7fbeaa-c809-4be1-ac65-26773555f4b7","ip_address":"10.69.150.67","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:08:01.859843Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"957a1d7b-20e5-4f6e-9068-0ce89e548eb9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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":"2023-07-03T20:08:02.108830Z","zone":"fr-par-1"}' headers: Content-Length: - - "1102" + - "1072" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:17 GMT + - Mon, 03 Jul 2023 20:08:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2571,7 +2571,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82d719ee-0df6-4c74-9b21-ee5067acd986 + - 074e8267-163b-4046-b38f-eb2b076f80dd status: 200 OK code: 200 duration: "" @@ -2582,7 +2582,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/641b3663-8eb8-42ba-b29d-388d8962519d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/957a1d7b-20e5-4f6e-9068-0ce89e548eb9 method: GET response: body: '{"message":"lbs not Found"}' @@ -2594,7 +2594,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:47 GMT + - Mon, 03 Jul 2023 20:08:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2604,7 +2604,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ce28b34-977b-4dd0-b501-65ca1f065c73 + - a8c0458d-6e46-43e5-bf73-bda6cf3fd164 status: 404 Not Found code: 404 duration: "" @@ -2615,7 +2615,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/641b3663-8eb8-42ba-b29d-388d8962519d + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/957a1d7b-20e5-4f6e-9068-0ce89e548eb9 method: GET response: body: '{"message":"lbs not Found"}' @@ -2627,7 +2627,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:47 GMT + - Mon, 03 Jul 2023 20:08:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2637,7 +2637,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ff4b562-76b6-4561-89f9-0c59940d0466 + - 68c8149d-42f3-4c5c-a2a5-8f4d9c7d9726 status: 404 Not Found code: 404 duration: "" @@ -2648,19 +2648,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c6b47cd5-7fca-4acc-bde4-e32e91f58310 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "287" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:47 GMT + - Mon, 03 Jul 2023 20:08:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2670,7 +2670,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 89f1f5d2-0850-4eda-b2a5-600c57e9a124 + - eab9d151-8793-4da2-ab2c-82dc75eb3f1e status: 200 OK code: 200 duration: "" @@ -2681,19 +2681,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c6b47cd5-7fca-4acc-bde4-e32e91f58310 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "287" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:48 GMT + - Mon, 03 Jul 2023 20:08:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2703,7 +2703,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af490064-4837-4ea2-97aa-a4e227dca9a8 + - 8a5d7f2e-762e-45ab-8397-c4ede739c94d status: 200 OK code: 200 duration: "" @@ -2714,7 +2714,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c6b47cd5-7fca-4acc-bde4-e32e91f58310 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: DELETE response: body: "" @@ -2724,7 +2724,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:48 GMT + - Mon, 03 Jul 2023 20:08:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2734,7 +2734,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96ae23d0-cb19-405f-b91e-4d744e7aa9fe + - 8c852c33-8ee3-4470-8807-8920bf752b22 status: 204 No Content code: 204 duration: "" diff --git a/scaleway/testdata/lb-frontend-acl-redirect-action.cassette.yaml b/scaleway/testdata/lb-frontend-acl-redirect-action.cassette.yaml index 101ae542fa..2cedd7ecb4 100644 --- a/scaleway/testdata/lb-frontend-acl-redirect-action.cassette.yaml +++ b/scaleway/testdata/lb-frontend-acl-redirect-action.cassette.yaml @@ -13,16 +13,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips method: POST response: - body: '{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "287" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:21 GMT + - Mon, 03 Jul 2023 20:05:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -32,7 +32,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c8a7665-018c-4e4e-9c2f-529f39818889 + - 251a13bb-ea2b-436b-b699-4b0816028140 status: 200 OK code: 200 duration: "" @@ -43,19 +43,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c6b47cd5-7fca-4acc-bde4-e32e91f58310 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "287" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:21 GMT + - Mon, 03 Jul 2023 20:05:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -65,12 +65,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ba8f44a-20f7-42f5-a3a3-7413b9f8c7ec + - 70380671-917b-4d21-95ab-c9db49b7f97b status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-lb-acl","description":"","ip_id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","assign_flexible_ip":null,"tags":null,"type":"lb-s","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-lb-acl","description":"","ip_id":"86df9ff8-7a77-492d-9b03-4f6205127499","assign_flexible_ip":null,"tags":null,"type":"lb-s","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' form: {} headers: Content-Type: @@ -81,16 +81,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs method: POST response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:25:21.464283219Z","description":"","frontend_count":0,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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":"2023-06-29T13:25:21.464283219Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:05:52.043691596Z","description":"","frontend_count":0,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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":"2023-07-03T20:05:52.043691596Z","zone":"fr-par-1"}' headers: Content-Length: - - "890" + - "866" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:21 GMT + - Mon, 03 Jul 2023 20:05:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -100,7 +100,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b566186-94aa-4180-9209-b729f7fc95ad + - f16617c5-08b3-4be0-8d9d-a6d7e17bc1e8 status: 200 OK code: 200 duration: "" @@ -111,19 +111,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/dc83b294-5adc-4f8f-936d-692052cd52fd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4cf30121-5074-4ff8-9263-be0eaaa2b557 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":0,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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":"2023-06-29T13:25:21.464283Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":0,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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":"2023-07-03T20:05:52.043692Z","zone":"fr-par-1"}' headers: Content-Length: - - "884" + - "860" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:21 GMT + - Mon, 03 Jul 2023 20:05:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -133,7 +133,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7fe3270d-d556-47fc-9292-7371340bc6f7 + - f3724439-efc8-48a9-8474-94f8a706ac78 status: 200 OK code: 200 duration: "" @@ -144,19 +144,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/dc83b294-5adc-4f8f-936d-692052cd52fd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4cf30121-5074-4ff8-9263-be0eaaa2b557 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":0,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[{"created_at":"2023-06-29T13:24:14.607233Z","id":"5e1f9622-d92c-462f-86bf-25e97bd0278b","ip_address":"10.73.98.127","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:25:22.497387Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":0,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[{"created_at":"2023-07-03T20:04:44.668293Z","id":"770c6cd2-0583-445c-830b-be5a031fcdbd","ip_address":"10.76.114.93","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:05:53.362486Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"}' headers: Content-Length: - - "1098" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:51 GMT + - Mon, 03 Jul 2023 20:06:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -166,7 +166,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe10a9a5-5cab-40ee-8da6-4818e1fac69c + - a89889de-f948-4534-9495-5acbbbe1bae9 status: 200 OK code: 200 duration: "" @@ -177,19 +177,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/dc83b294-5adc-4f8f-936d-692052cd52fd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4cf30121-5074-4ff8-9263-be0eaaa2b557 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":0,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[{"created_at":"2023-06-29T13:24:14.607233Z","id":"5e1f9622-d92c-462f-86bf-25e97bd0278b","ip_address":"10.73.98.127","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:25:22.497387Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":0,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[{"created_at":"2023-07-03T20:04:44.668293Z","id":"770c6cd2-0583-445c-830b-be5a031fcdbd","ip_address":"10.76.114.93","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:05:53.362486Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"}' headers: Content-Length: - - "1098" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:51 GMT + - Mon, 03 Jul 2023 20:06:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -199,7 +199,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 689d0e2e-92d9-4768-aa9f-7977aa907ef4 + - a8aaefae-381e-441c-b29e-35d35e825ff6 status: 200 OK code: 200 duration: "" @@ -210,19 +210,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/dc83b294-5adc-4f8f-936d-692052cd52fd/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4cf30121-5074-4ff8-9263-be0eaaa2b557/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:51 GMT + - Mon, 03 Jul 2023 20:06:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -232,7 +232,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3f67d905-2353-462d-b164-8410d4d3b558 + - fc2481ea-ac51-4ea0-9b66-98ff4a1a1049 status: 200 OK code: 200 duration: "" @@ -243,19 +243,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/dc83b294-5adc-4f8f-936d-692052cd52fd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4cf30121-5074-4ff8-9263-be0eaaa2b557 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":0,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[{"created_at":"2023-06-29T13:24:14.607233Z","id":"5e1f9622-d92c-462f-86bf-25e97bd0278b","ip_address":"10.73.98.127","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:25:22.497387Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":0,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[{"created_at":"2023-07-03T20:04:44.668293Z","id":"770c6cd2-0583-445c-830b-be5a031fcdbd","ip_address":"10.76.114.93","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:05:53.362486Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"}' headers: Content-Length: - - "1098" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:51 GMT + - Mon, 03 Jul 2023 20:06:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -265,12 +265,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac249b76-2476-47d5-ba31-faea34ccb805 + - 0b9800f4-8cd9-46ce-bc0c-31ce5b86dfdf status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-bkd-peaceful-raman","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_max_retries":2,"check_send_proxy":false,"transient_check_delay":null,"check_delay":60000,"check_timeout":30000},"server_ip":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":null,"max_retries":3,"max_connections":null,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' + body: '{"name":"tf-lb-bkd-relaxed-tu","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_max_retries":2,"check_send_proxy":false,"transient_check_delay":"0.500000000s","check_delay":60000,"check_timeout":30000},"server_ip":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":null,"max_retries":3,"max_connections":null,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' form: {} headers: Content-Type: @@ -278,19 +278,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/dc83b294-5adc-4f8f-936d-692052cd52fd/backends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4cf30121-5074-4ff8-9263-be0eaaa2b557/backends method: POST response: - body: '{"created_at":"2023-06-29T13:25:52.084325102Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"f6223f86-f6ef-47f1-a7d3-b61a611c5c36","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":0,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[{"created_at":"2023-06-29T13:24:14.607233Z","id":"5e1f9622-d92c-462f-86bf-25e97bd0278b","ip_address":"10.73.98.127","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:25:52.117273971Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-raman","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:25:52.084325102Z"}' + body: '{"created_at":"2023-07-03T20:06:22.801151033Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"19ee9d12-6cd5-4b24-9deb-95e342a75ab5","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":0,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[{"created_at":"2023-07-03T20:04:44.668293Z","id":"770c6cd2-0583-445c-830b-be5a031fcdbd","ip_address":"10.76.114.93","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:06:22.845421688Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-relaxed-tu","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:06:22.801151033Z"}' headers: Content-Length: - - "1973" + - "1913" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:52 GMT + - Mon, 03 Jul 2023 20:06:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -300,7 +300,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f4ef6b8-562c-4f01-921d-d7cd32009029 + - c976652c-73ea-4983-b905-275fdcd1c55c status: 200 OK code: 200 duration: "" @@ -311,19 +311,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/dc83b294-5adc-4f8f-936d-692052cd52fd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4cf30121-5074-4ff8-9263-be0eaaa2b557 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":0,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[{"created_at":"2023-06-29T13:24:14.607233Z","id":"5e1f9622-d92c-462f-86bf-25e97bd0278b","ip_address":"10.73.98.127","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:25:52.117274Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":0,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[{"created_at":"2023-07-03T20:04:44.668293Z","id":"770c6cd2-0583-445c-830b-be5a031fcdbd","ip_address":"10.76.114.93","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:06:22.845422Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"}' headers: Content-Length: - - "1100" + - "1070" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:52 GMT + - Mon, 03 Jul 2023 20:06:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -333,7 +333,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57f835a5-8184-4127-aa2e-bd11c3a696e4 + - a5e6cdfb-0024-476a-8f02-627e9db28fd6 status: 200 OK code: 200 duration: "" @@ -344,19 +344,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f6223f86-f6ef-47f1-a7d3-b61a611c5c36 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/19ee9d12-6cd5-4b24-9deb-95e342a75ab5 method: GET response: - body: '{"created_at":"2023-06-29T13:25:52.084325Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"f6223f86-f6ef-47f1-a7d3-b61a611c5c36","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":0,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[{"created_at":"2023-06-29T13:24:14.607233Z","id":"5e1f9622-d92c-462f-86bf-25e97bd0278b","ip_address":"10.73.98.127","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:25:52.117274Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-raman","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:25:52.084325Z"}' + body: '{"created_at":"2023-07-03T20:06:22.801151Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"19ee9d12-6cd5-4b24-9deb-95e342a75ab5","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":0,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[{"created_at":"2023-07-03T20:04:44.668293Z","id":"770c6cd2-0583-445c-830b-be5a031fcdbd","ip_address":"10.76.114.93","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:06:23.128556Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-relaxed-tu","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:06:22.801151Z"}' headers: Content-Length: - - "1964" + - "1902" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:52 GMT + - Mon, 03 Jul 2023 20:06:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -366,7 +366,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac3966b2-10bf-4edf-9a98-0412368c8da5 + - efbb1834-4762-4fbf-ae61-4262201b5340 status: 200 OK code: 200 duration: "" @@ -377,19 +377,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/dc83b294-5adc-4f8f-936d-692052cd52fd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4cf30121-5074-4ff8-9263-be0eaaa2b557 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":0,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[{"created_at":"2023-06-29T13:24:14.607233Z","id":"5e1f9622-d92c-462f-86bf-25e97bd0278b","ip_address":"10.73.98.127","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:25:52.371689Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":0,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[{"created_at":"2023-07-03T20:04:44.668293Z","id":"770c6cd2-0583-445c-830b-be5a031fcdbd","ip_address":"10.76.114.93","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:06:23.128556Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"}' headers: Content-Length: - - "1098" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:52 GMT + - Mon, 03 Jul 2023 20:06:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -399,7 +399,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8a58b57-7683-4f87-b0ff-f5fa3904f200 + - e6504ae6-52b5-433c-816e-c0b463dc5aaf status: 200 OK code: 200 duration: "" @@ -410,19 +410,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/dc83b294-5adc-4f8f-936d-692052cd52fd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4cf30121-5074-4ff8-9263-be0eaaa2b557 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":0,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[{"created_at":"2023-06-29T13:24:14.607233Z","id":"5e1f9622-d92c-462f-86bf-25e97bd0278b","ip_address":"10.73.98.127","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:25:52.371689Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":0,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[{"created_at":"2023-07-03T20:04:44.668293Z","id":"770c6cd2-0583-445c-830b-be5a031fcdbd","ip_address":"10.76.114.93","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:06:23.128556Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"}' headers: Content-Length: - - "1098" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:52 GMT + - Mon, 03 Jul 2023 20:06:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -432,12 +432,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29635e29-7086-4608-a3d8-ec002e939894 + - 5754be61-9e12-4f74-8d08-71305153c24e status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-test","inbound_port":80,"backend_id":"f6223f86-f6ef-47f1-a7d3-b61a611c5c36","certificate_ids":null,"enable_http3":false,"timeout_client":30000}' + body: '{"name":"tf-test","inbound_port":80,"backend_id":"19ee9d12-6cd5-4b24-9deb-95e342a75ab5","certificate_ids":null,"enable_http3":false,"timeout_client":30000}' form: {} headers: Content-Type: @@ -445,19 +445,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/dc83b294-5adc-4f8f-936d-692052cd52fd/frontends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4cf30121-5074-4ff8-9263-be0eaaa2b557/frontends method: POST response: - body: '{"backend":{"created_at":"2023-06-29T13:25:52.084325Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"f6223f86-f6ef-47f1-a7d3-b61a611c5c36","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":1,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-raman","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:25:52.084325Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:25:52.769126Z","enable_http3":false,"id":"1b13e03c-a274-48a2-ab54-6a63f690462b","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":1,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[{"created_at":"2023-06-29T13:24:14.607233Z","id":"5e1f9622-d92c-462f-86bf-25e97bd0278b","ip_address":"10.73.98.127","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:25:52.833828374Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:25:52.769126Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:06:22.801151Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"19ee9d12-6cd5-4b24-9deb-95e342a75ab5","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":1,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-relaxed-tu","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:06:22.801151Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:06:23.576474Z","enable_http3":false,"id":"dc94cd3d-b80b-43ad-af5c-b66006ee1a68","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":1,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[{"created_at":"2023-07-03T20:04:44.668293Z","id":"770c6cd2-0583-445c-830b-be5a031fcdbd","ip_address":"10.76.114.93","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:06:23.630290806Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:06:23.576474Z"}' headers: Content-Length: - - "3124" + - "3030" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:52 GMT + - Mon, 03 Jul 2023 20:06:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -467,7 +467,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50cd85f1-1bb4-40bd-9db1-539fa9a4c316 + - 27285a66-3025-4d53-b074-bf116831fc41 status: 200 OK code: 200 duration: "" @@ -478,19 +478,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/dc83b294-5adc-4f8f-936d-692052cd52fd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4cf30121-5074-4ff8-9263-be0eaaa2b557 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":1,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[{"created_at":"2023-06-29T13:24:14.607233Z","id":"5e1f9622-d92c-462f-86bf-25e97bd0278b","ip_address":"10.73.98.127","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:25:53.133780Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":1,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[{"created_at":"2023-07-03T20:04:44.668293Z","id":"770c6cd2-0583-445c-830b-be5a031fcdbd","ip_address":"10.76.114.93","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:06:23.630291Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"}' headers: Content-Length: - - "1098" + - "1070" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:53 GMT + - Mon, 03 Jul 2023 20:06:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -500,12 +500,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f28405e9-661b-4cea-95ce-0e28c86e276d + - 675ec0d2-614a-4190-a7dd-83bc823fe877 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-test","inbound_port":80,"backend_id":"f6223f86-f6ef-47f1-a7d3-b61a611c5c36","certificate_ids":null,"enable_http3":false,"timeout_client":30000}' + body: '{"name":"tf-test","inbound_port":80,"backend_id":"19ee9d12-6cd5-4b24-9deb-95e342a75ab5","certificate_ids":null,"enable_http3":false,"timeout_client":30000}' form: {} headers: Content-Type: @@ -513,19 +513,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/1b13e03c-a274-48a2-ab54-6a63f690462b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/dc94cd3d-b80b-43ad-af5c-b66006ee1a68 method: PUT response: - body: '{"backend":{"created_at":"2023-06-29T13:25:52.084325Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"f6223f86-f6ef-47f1-a7d3-b61a611c5c36","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":1,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-raman","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:25:52.084325Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:25:52.769126Z","enable_http3":false,"id":"1b13e03c-a274-48a2-ab54-6a63f690462b","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":1,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[{"created_at":"2023-06-29T13:24:14.607233Z","id":"5e1f9622-d92c-462f-86bf-25e97bd0278b","ip_address":"10.73.98.127","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:25:53.389759088Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:25:53.368102473Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:06:22.801151Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"19ee9d12-6cd5-4b24-9deb-95e342a75ab5","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":1,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-relaxed-tu","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:06:22.801151Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:06:23.576474Z","enable_http3":false,"id":"dc94cd3d-b80b-43ad-af5c-b66006ee1a68","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":1,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[{"created_at":"2023-07-03T20:04:44.668293Z","id":"770c6cd2-0583-445c-830b-be5a031fcdbd","ip_address":"10.76.114.93","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:06:24.070578368Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:06:24.042603485Z"}' headers: Content-Length: - - "3127" + - "3033" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:53 GMT + - Mon, 03 Jul 2023 20:06:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -535,7 +535,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 345704a6-e255-41a8-8e80-d6cbfb4e961a + - ee06c7b9-f19c-4bd4-9740-2039ef556290 status: 200 OK code: 200 duration: "" @@ -546,19 +546,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/1b13e03c-a274-48a2-ab54-6a63f690462b/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/dc94cd3d-b80b-43ad-af5c-b66006ee1a68/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:53 GMT + - Mon, 03 Jul 2023 20:06:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -568,12 +568,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8191873-d470-405f-9a27-9aa4876394ec + - 23f23bab-0c01-4710-afb9-dca820443e7d status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-acl-interesting-antonelli","action":{"type":"redirect","redirect":{"type":"location","target":"https://example.com","code":307}},"match":{"ip_subnet":["10.0.0.10"],"http_filter":"path_begin","http_filter_value":["foo","bar"],"http_filter_option":null,"invert":false},"index":1,"description":""}' + body: '{"name":"tf-lb-acl-trusting-euclid","action":{"type":"redirect","redirect":{"type":"location","target":"https://example.com","code":307}},"match":{"ip_subnet":["10.0.0.10"],"http_filter":"path_begin","http_filter_value":["foo","bar"],"http_filter_option":null,"invert":false},"index":1,"description":""}' form: {} headers: Content-Type: @@ -581,19 +581,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/1b13e03c-a274-48a2-ab54-6a63f690462b/acls + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/dc94cd3d-b80b-43ad-af5c-b66006ee1a68/acls method: POST response: - body: '{"action":{"redirect":{"code":307,"target":"https://example.com","type":"location"},"type":"redirect"},"created_at":"2023-06-29T13:25:53.764527066Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:25:52.084325Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"f6223f86-f6ef-47f1-a7d3-b61a611c5c36","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":1,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-raman","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:25:52.084325Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:25:52.769126Z","enable_http3":false,"id":"1b13e03c-a274-48a2-ab54-6a63f690462b","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":1,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:25:53.368102Z"},"id":"376a4eb8-da65-4abc-9bb7-5a7a52968222","index":1,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["foo","bar"],"invert":false,"ip_subnet":["10.0.0.10"]},"name":"tf-lb-acl-interesting-antonelli","updated_at":"2023-06-29T13:25:53.764527066Z"}' + body: '{"action":{"redirect":{"code":307,"target":"https://example.com","type":"location"},"type":"redirect"},"created_at":"2023-07-03T20:06:24.495703181Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:06:22.801151Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"19ee9d12-6cd5-4b24-9deb-95e342a75ab5","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":1,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-relaxed-tu","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:06:22.801151Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:06:23.576474Z","enable_http3":false,"id":"dc94cd3d-b80b-43ad-af5c-b66006ee1a68","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":1,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:06:24.042603Z"},"id":"774f2902-7eef-4514-97af-b298a5c57530","index":1,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["foo","bar"],"invert":false,"ip_subnet":["10.0.0.10"]},"name":"tf-lb-acl-trusting-euclid","updated_at":"2023-07-03T20:06:24.495703181Z"}' headers: Content-Length: - - "3374" + - "3264" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:53 GMT + - Mon, 03 Jul 2023 20:06:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -603,7 +603,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e48aaddd-88fe-44f1-8d49-6c81f39a2ee5 + - 460f3352-9f89-4f03-a4d0-0d37f67c99a9 status: 200 OK code: 200 duration: "" @@ -614,19 +614,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/1b13e03c-a274-48a2-ab54-6a63f690462b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/dc94cd3d-b80b-43ad-af5c-b66006ee1a68 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:25:52.084325Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"f6223f86-f6ef-47f1-a7d3-b61a611c5c36","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":1,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-raman","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:25:52.084325Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:25:52.769126Z","enable_http3":false,"id":"1b13e03c-a274-48a2-ab54-6a63f690462b","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":1,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:25:53.368102Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:06:22.801151Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"19ee9d12-6cd5-4b24-9deb-95e342a75ab5","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":1,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-relaxed-tu","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:06:22.801151Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:06:23.576474Z","enable_http3":false,"id":"dc94cd3d-b80b-43ad-af5c-b66006ee1a68","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":1,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:06:24.042603Z"}' headers: Content-Length: - - "2901" + - "2813" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:54 GMT + - Mon, 03 Jul 2023 20:06:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -636,7 +636,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc0920d6-ad2c-4c06-a3eb-f4727a44663a + - c136da8d-0ed1-4615-84a9-24f07167e5c0 status: 200 OK code: 200 duration: "" @@ -647,19 +647,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/1b13e03c-a274-48a2-ab54-6a63f690462b/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/dc94cd3d-b80b-43ad-af5c-b66006ee1a68/acls?order_by=created_at_asc&page=1 method: GET response: - body: '{"acls":[{"action":{"redirect":{"code":307,"target":"https://example.com","type":"location"},"type":"redirect"},"created_at":"2023-06-29T13:25:53.764527Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:25:52.084325Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"f6223f86-f6ef-47f1-a7d3-b61a611c5c36","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":1,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-raman","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:25:52.084325Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:25:52.769126Z","enable_http3":false,"id":"1b13e03c-a274-48a2-ab54-6a63f690462b","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":1,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:25:53.368102Z"},"id":"376a4eb8-da65-4abc-9bb7-5a7a52968222","index":1,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["foo","bar"],"invert":false,"ip_subnet":["10.0.0.10"]},"name":"tf-lb-acl-interesting-antonelli","updated_at":"2023-06-29T13:25:53.764527Z"}],"total_count":1}' + body: '{"acls":[{"action":{"redirect":{"code":307,"target":"https://example.com","type":"location"},"type":"redirect"},"created_at":"2023-07-03T20:06:24.495703Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:06:22.801151Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"19ee9d12-6cd5-4b24-9deb-95e342a75ab5","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":1,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-relaxed-tu","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:06:22.801151Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:06:23.576474Z","enable_http3":false,"id":"dc94cd3d-b80b-43ad-af5c-b66006ee1a68","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":1,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:06:24.042603Z"},"id":"774f2902-7eef-4514-97af-b298a5c57530","index":1,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["foo","bar"],"invert":false,"ip_subnet":["10.0.0.10"]},"name":"tf-lb-acl-trusting-euclid","updated_at":"2023-07-03T20:06:24.495703Z"}],"total_count":1}' headers: Content-Length: - - "3396" + - "3285" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:54 GMT + - Mon, 03 Jul 2023 20:06:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -669,7 +669,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8f92bb2-c1e0-4f1a-b54c-9458b1c37e12 + - 0e2bb31a-d5ec-4de9-9f51-eb0dbf092fb7 status: 200 OK code: 200 duration: "" @@ -680,19 +680,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/1b13e03c-a274-48a2-ab54-6a63f690462b/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/dc94cd3d-b80b-43ad-af5c-b66006ee1a68/acls?order_by=created_at_asc&page=1 method: GET response: - body: '{"acls":[{"action":{"redirect":{"code":307,"target":"https://example.com","type":"location"},"type":"redirect"},"created_at":"2023-06-29T13:25:53.764527Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:25:52.084325Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"f6223f86-f6ef-47f1-a7d3-b61a611c5c36","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":1,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-raman","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:25:52.084325Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:25:52.769126Z","enable_http3":false,"id":"1b13e03c-a274-48a2-ab54-6a63f690462b","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":1,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:25:53.368102Z"},"id":"376a4eb8-da65-4abc-9bb7-5a7a52968222","index":1,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["foo","bar"],"invert":false,"ip_subnet":["10.0.0.10"]},"name":"tf-lb-acl-interesting-antonelli","updated_at":"2023-06-29T13:25:53.764527Z"}],"total_count":1}' + body: '{"acls":[{"action":{"redirect":{"code":307,"target":"https://example.com","type":"location"},"type":"redirect"},"created_at":"2023-07-03T20:06:24.495703Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:06:22.801151Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"19ee9d12-6cd5-4b24-9deb-95e342a75ab5","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":1,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-relaxed-tu","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:06:22.801151Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:06:23.576474Z","enable_http3":false,"id":"dc94cd3d-b80b-43ad-af5c-b66006ee1a68","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":1,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:06:24.042603Z"},"id":"774f2902-7eef-4514-97af-b298a5c57530","index":1,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["foo","bar"],"invert":false,"ip_subnet":["10.0.0.10"]},"name":"tf-lb-acl-trusting-euclid","updated_at":"2023-07-03T20:06:24.495703Z"}],"total_count":1}' headers: Content-Length: - - "3396" + - "3285" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:54 GMT + - Mon, 03 Jul 2023 20:06:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -702,7 +702,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 841d1fc2-4d3a-4920-8943-a9cb23e064ff + - 598b3700-d994-4d84-86ed-b3ac8e3e5c55 status: 200 OK code: 200 duration: "" @@ -713,19 +713,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c6b47cd5-7fca-4acc-bde4-e32e91f58310 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "321" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:54 GMT + - Mon, 03 Jul 2023 20:06:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -735,7 +735,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eddb0e2d-16bf-483e-a7e7-1bd846773ab2 + - e287a6e7-792e-43fa-82c6-c3038913c4d6 status: 200 OK code: 200 duration: "" @@ -746,19 +746,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/dc83b294-5adc-4f8f-936d-692052cd52fd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4cf30121-5074-4ff8-9263-be0eaaa2b557 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":1,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[{"created_at":"2023-06-29T13:24:14.607233Z","id":"5e1f9622-d92c-462f-86bf-25e97bd0278b","ip_address":"10.73.98.127","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:25:54.090561Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":1,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[{"created_at":"2023-07-03T20:04:44.668293Z","id":"770c6cd2-0583-445c-830b-be5a031fcdbd","ip_address":"10.76.114.93","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:06:24.815633Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"}' headers: Content-Length: - - "1098" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:54 GMT + - Mon, 03 Jul 2023 20:06:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -768,7 +768,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd09b938-3af2-4147-8b7b-a2375a92487f + - 04f46914-b94f-42d4-b802-3803edb11987 status: 200 OK code: 200 duration: "" @@ -779,19 +779,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/dc83b294-5adc-4f8f-936d-692052cd52fd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4cf30121-5074-4ff8-9263-be0eaaa2b557 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":1,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[{"created_at":"2023-06-29T13:24:14.607233Z","id":"5e1f9622-d92c-462f-86bf-25e97bd0278b","ip_address":"10.73.98.127","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:25:54.090561Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":1,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[{"created_at":"2023-07-03T20:04:44.668293Z","id":"770c6cd2-0583-445c-830b-be5a031fcdbd","ip_address":"10.76.114.93","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:06:24.815633Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"}' headers: Content-Length: - - "1098" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:54 GMT + - Mon, 03 Jul 2023 20:06:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -801,7 +801,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 10e0a96b-4ad3-4133-8d24-8b944c64735b + - a9ccf19c-6f13-4978-890f-4d73de304322 status: 200 OK code: 200 duration: "" @@ -812,19 +812,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/dc83b294-5adc-4f8f-936d-692052cd52fd/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4cf30121-5074-4ff8-9263-be0eaaa2b557/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:54 GMT + - Mon, 03 Jul 2023 20:06:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -834,7 +834,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 518fcefc-a152-4fe9-93db-c6bd9ac9b239 + - 7a60603f-ac90-4a3a-b9c9-21b02734df23 status: 200 OK code: 200 duration: "" @@ -845,19 +845,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f6223f86-f6ef-47f1-a7d3-b61a611c5c36 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/19ee9d12-6cd5-4b24-9deb-95e342a75ab5 method: GET response: - body: '{"created_at":"2023-06-29T13:25:52.084325Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"f6223f86-f6ef-47f1-a7d3-b61a611c5c36","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":1,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[{"created_at":"2023-06-29T13:24:14.607233Z","id":"5e1f9622-d92c-462f-86bf-25e97bd0278b","ip_address":"10.73.98.127","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:25:54.090561Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-raman","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:25:52.084325Z"}' + body: '{"created_at":"2023-07-03T20:06:22.801151Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"19ee9d12-6cd5-4b24-9deb-95e342a75ab5","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":1,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[{"created_at":"2023-07-03T20:04:44.668293Z","id":"770c6cd2-0583-445c-830b-be5a031fcdbd","ip_address":"10.76.114.93","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:06:24.815633Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-relaxed-tu","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:06:22.801151Z"}' headers: Content-Length: - - "1962" + - "1902" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:55 GMT + - Mon, 03 Jul 2023 20:06:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -867,7 +867,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc100452-25a2-47c9-b417-1028ba33c464 + - 9215e16a-67db-4656-9f27-eb1de8461e7c status: 200 OK code: 200 duration: "" @@ -878,19 +878,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/dc83b294-5adc-4f8f-936d-692052cd52fd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4cf30121-5074-4ff8-9263-be0eaaa2b557 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":1,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[{"created_at":"2023-06-29T13:24:14.607233Z","id":"5e1f9622-d92c-462f-86bf-25e97bd0278b","ip_address":"10.73.98.127","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:25:54.090561Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":1,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[{"created_at":"2023-07-03T20:04:44.668293Z","id":"770c6cd2-0583-445c-830b-be5a031fcdbd","ip_address":"10.76.114.93","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:06:24.815633Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"}' headers: Content-Length: - - "1098" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:55 GMT + - Mon, 03 Jul 2023 20:06:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -900,7 +900,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a7e000a-6534-4c83-b76c-3a9f88a84826 + - 998251ba-3afd-4e54-b068-7450b96862fc status: 200 OK code: 200 duration: "" @@ -911,19 +911,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/1b13e03c-a274-48a2-ab54-6a63f690462b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/dc94cd3d-b80b-43ad-af5c-b66006ee1a68 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:25:52.084325Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"f6223f86-f6ef-47f1-a7d3-b61a611c5c36","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":1,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-raman","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:25:52.084325Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:25:52.769126Z","enable_http3":false,"id":"1b13e03c-a274-48a2-ab54-6a63f690462b","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":1,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:25:53.368102Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:06:22.801151Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"19ee9d12-6cd5-4b24-9deb-95e342a75ab5","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":1,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-relaxed-tu","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:06:22.801151Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:06:23.576474Z","enable_http3":false,"id":"dc94cd3d-b80b-43ad-af5c-b66006ee1a68","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":1,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:06:24.042603Z"}' headers: Content-Length: - - "2901" + - "2813" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:55 GMT + - Mon, 03 Jul 2023 20:06:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -933,7 +933,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 39c581e1-6bf1-4689-b8e8-98c97821da84 + - bebb280f-b35a-48e5-b08f-2914751c723e status: 200 OK code: 200 duration: "" @@ -944,19 +944,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/1b13e03c-a274-48a2-ab54-6a63f690462b/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/dc94cd3d-b80b-43ad-af5c-b66006ee1a68/acls?order_by=created_at_asc&page=1 method: GET response: - body: '{"acls":[{"action":{"redirect":{"code":307,"target":"https://example.com","type":"location"},"type":"redirect"},"created_at":"2023-06-29T13:25:53.764527Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:25:52.084325Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"f6223f86-f6ef-47f1-a7d3-b61a611c5c36","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":1,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-raman","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:25:52.084325Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:25:52.769126Z","enable_http3":false,"id":"1b13e03c-a274-48a2-ab54-6a63f690462b","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":1,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:25:53.368102Z"},"id":"376a4eb8-da65-4abc-9bb7-5a7a52968222","index":1,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["foo","bar"],"invert":false,"ip_subnet":["10.0.0.10"]},"name":"tf-lb-acl-interesting-antonelli","updated_at":"2023-06-29T13:25:53.764527Z"}],"total_count":1}' + body: '{"acls":[{"action":{"redirect":{"code":307,"target":"https://example.com","type":"location"},"type":"redirect"},"created_at":"2023-07-03T20:06:24.495703Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:06:22.801151Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"19ee9d12-6cd5-4b24-9deb-95e342a75ab5","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":1,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-relaxed-tu","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:06:22.801151Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:06:23.576474Z","enable_http3":false,"id":"dc94cd3d-b80b-43ad-af5c-b66006ee1a68","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":1,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:06:24.042603Z"},"id":"774f2902-7eef-4514-97af-b298a5c57530","index":1,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["foo","bar"],"invert":false,"ip_subnet":["10.0.0.10"]},"name":"tf-lb-acl-trusting-euclid","updated_at":"2023-07-03T20:06:24.495703Z"}],"total_count":1}' headers: Content-Length: - - "3396" + - "3285" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:55 GMT + - Mon, 03 Jul 2023 20:06:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -966,7 +966,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b98fef39-f047-47aa-b2f2-fe11c476dc44 + - dfda85cb-1058-4a52-9e2c-61030bf1dcc9 status: 200 OK code: 200 duration: "" @@ -977,19 +977,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c6b47cd5-7fca-4acc-bde4-e32e91f58310 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "321" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:55 GMT + - Mon, 03 Jul 2023 20:06:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -999,7 +999,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32d5684b-4107-4f51-ac5e-0868fb6ab35b + - b6c80f0f-6a5d-4b61-8677-d9623ad1acc4 status: 200 OK code: 200 duration: "" @@ -1010,19 +1010,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/dc83b294-5adc-4f8f-936d-692052cd52fd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4cf30121-5074-4ff8-9263-be0eaaa2b557 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":1,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[{"created_at":"2023-06-29T13:24:14.607233Z","id":"5e1f9622-d92c-462f-86bf-25e97bd0278b","ip_address":"10.73.98.127","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:25:54.090561Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":1,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[{"created_at":"2023-07-03T20:04:44.668293Z","id":"770c6cd2-0583-445c-830b-be5a031fcdbd","ip_address":"10.76.114.93","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:06:24.815633Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"}' headers: Content-Length: - - "1098" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:55 GMT + - Mon, 03 Jul 2023 20:06:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1032,7 +1032,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 655083b2-a057-4d8f-8b9a-0fbf764a918e + - 81a805cc-3eb0-450f-9a31-aa66d4e5fb3a status: 200 OK code: 200 duration: "" @@ -1043,19 +1043,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f6223f86-f6ef-47f1-a7d3-b61a611c5c36 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/19ee9d12-6cd5-4b24-9deb-95e342a75ab5 method: GET response: - body: '{"created_at":"2023-06-29T13:25:52.084325Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"f6223f86-f6ef-47f1-a7d3-b61a611c5c36","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":1,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[{"created_at":"2023-06-29T13:24:14.607233Z","id":"5e1f9622-d92c-462f-86bf-25e97bd0278b","ip_address":"10.73.98.127","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:25:54.090561Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-raman","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:25:52.084325Z"}' + body: '{"created_at":"2023-07-03T20:06:22.801151Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"19ee9d12-6cd5-4b24-9deb-95e342a75ab5","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":1,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[{"created_at":"2023-07-03T20:04:44.668293Z","id":"770c6cd2-0583-445c-830b-be5a031fcdbd","ip_address":"10.76.114.93","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:06:24.815633Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-relaxed-tu","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:06:22.801151Z"}' headers: Content-Length: - - "1962" + - "1902" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:55 GMT + - Mon, 03 Jul 2023 20:06:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1065,7 +1065,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60325340-5996-49c3-9299-be66005e9083 + - 3153d74a-e135-42ac-b7ca-baed7b113827 status: 200 OK code: 200 duration: "" @@ -1076,19 +1076,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/1b13e03c-a274-48a2-ab54-6a63f690462b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/dc94cd3d-b80b-43ad-af5c-b66006ee1a68 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:25:52.084325Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"f6223f86-f6ef-47f1-a7d3-b61a611c5c36","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":1,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-raman","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:25:52.084325Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:25:52.769126Z","enable_http3":false,"id":"1b13e03c-a274-48a2-ab54-6a63f690462b","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":1,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:25:53.368102Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:06:22.801151Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"19ee9d12-6cd5-4b24-9deb-95e342a75ab5","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":1,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-relaxed-tu","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:06:22.801151Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:06:23.576474Z","enable_http3":false,"id":"dc94cd3d-b80b-43ad-af5c-b66006ee1a68","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":1,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:06:24.042603Z"}' headers: Content-Length: - - "2901" + - "2813" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:55 GMT + - Mon, 03 Jul 2023 20:06:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1098,7 +1098,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 484ef1ff-e118-4f3a-af3a-68e8dbef9890 + - 9bf09246-530c-4d70-abe0-d16014ea9b22 status: 200 OK code: 200 duration: "" @@ -1109,19 +1109,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/dc83b294-5adc-4f8f-936d-692052cd52fd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4cf30121-5074-4ff8-9263-be0eaaa2b557/private-networks?order_by=created_at_asc method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":1,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[{"created_at":"2023-06-29T13:24:14.607233Z","id":"5e1f9622-d92c-462f-86bf-25e97bd0278b","ip_address":"10.73.98.127","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:25:54.090561Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"}' + body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "1098" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:55 GMT + - Mon, 03 Jul 2023 20:06:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1131,7 +1131,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30d926ba-0479-4472-be18-3475a57d3b00 + - 5bf6c258-83c1-474b-aee8-a3f677ed62a5 status: 200 OK code: 200 duration: "" @@ -1142,19 +1142,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/dc83b294-5adc-4f8f-936d-692052cd52fd/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4cf30121-5074-4ff8-9263-be0eaaa2b557 method: GET response: - body: '{"private_network":[],"total_count":0}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":1,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[{"created_at":"2023-07-03T20:04:44.668293Z","id":"770c6cd2-0583-445c-830b-be5a031fcdbd","ip_address":"10.76.114.93","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:06:24.815633Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"}' headers: Content-Length: - - "39" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:55 GMT + - Mon, 03 Jul 2023 20:06:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1164,7 +1164,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d80c9c8-3ea1-4afc-9521-4bc71a6c5961 + - 29b7018d-b1ca-44d9-ac9e-b057fa00981e status: 200 OK code: 200 duration: "" @@ -1175,19 +1175,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/dc83b294-5adc-4f8f-936d-692052cd52fd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4cf30121-5074-4ff8-9263-be0eaaa2b557 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":1,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[{"created_at":"2023-06-29T13:24:14.607233Z","id":"5e1f9622-d92c-462f-86bf-25e97bd0278b","ip_address":"10.73.98.127","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:25:54.090561Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":1,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[{"created_at":"2023-07-03T20:04:44.668293Z","id":"770c6cd2-0583-445c-830b-be5a031fcdbd","ip_address":"10.76.114.93","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:06:24.815633Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"}' headers: Content-Length: - - "1098" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:55 GMT + - Mon, 03 Jul 2023 20:06:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1197,7 +1197,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 18c1ad46-35aa-4a71-9749-2f2dfeb7c0c9 + - 4fcdc6da-ddb8-461b-8191-4baad600ce0b status: 200 OK code: 200 duration: "" @@ -1208,19 +1208,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/1b13e03c-a274-48a2-ab54-6a63f690462b/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/dc94cd3d-b80b-43ad-af5c-b66006ee1a68/acls?order_by=created_at_asc&page=1 method: GET response: - body: '{"acls":[{"action":{"redirect":{"code":307,"target":"https://example.com","type":"location"},"type":"redirect"},"created_at":"2023-06-29T13:25:53.764527Z","description":"","frontend":{"backend":{"created_at":"2023-06-29T13:25:52.084325Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"f6223f86-f6ef-47f1-a7d3-b61a611c5c36","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":1,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-peaceful-raman","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:25:52.084325Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:25:52.769126Z","enable_http3":false,"id":"1b13e03c-a274-48a2-ab54-6a63f690462b","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":1,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:25:53.368102Z"},"id":"376a4eb8-da65-4abc-9bb7-5a7a52968222","index":1,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["foo","bar"],"invert":false,"ip_subnet":["10.0.0.10"]},"name":"tf-lb-acl-interesting-antonelli","updated_at":"2023-06-29T13:25:53.764527Z"}],"total_count":1}' + body: '{"acls":[{"action":{"redirect":{"code":307,"target":"https://example.com","type":"location"},"type":"redirect"},"created_at":"2023-07-03T20:06:24.495703Z","description":"","frontend":{"backend":{"created_at":"2023-07-03T20:06:22.801151Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"19ee9d12-6cd5-4b24-9deb-95e342a75ab5","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":1,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-relaxed-tu","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:06:22.801151Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:06:23.576474Z","enable_http3":false,"id":"dc94cd3d-b80b-43ad-af5c-b66006ee1a68","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":1,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:06:24.042603Z"},"id":"774f2902-7eef-4514-97af-b298a5c57530","index":1,"match":{"http_filter":"path_begin","http_filter_option":null,"http_filter_value":["foo","bar"],"invert":false,"ip_subnet":["10.0.0.10"]},"name":"tf-lb-acl-trusting-euclid","updated_at":"2023-07-03T20:06:24.495703Z"}],"total_count":1}' headers: Content-Length: - - "3396" + - "3285" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:55 GMT + - Mon, 03 Jul 2023 20:06:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1230,7 +1230,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d8b11a8-c80f-4ba6-ab83-ba12c0144fee + - 67756286-e47b-43b1-bd2a-7f91fed7174f status: 200 OK code: 200 duration: "" @@ -1241,7 +1241,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/1b13e03c-a274-48a2-ab54-6a63f690462b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/dc94cd3d-b80b-43ad-af5c-b66006ee1a68 method: DELETE response: body: "" @@ -1251,7 +1251,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:56 GMT + - Mon, 03 Jul 2023 20:06:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1261,7 +1261,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13f0c872-eff8-452d-9728-6158571b482b + - 6bd0240b-f3f2-48c5-8034-49570031756a status: 204 No Content code: 204 duration: "" @@ -1272,19 +1272,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/dc83b294-5adc-4f8f-936d-692052cd52fd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4cf30121-5074-4ff8-9263-be0eaaa2b557 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":0,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[{"created_at":"2023-06-29T13:24:14.607233Z","id":"5e1f9622-d92c-462f-86bf-25e97bd0278b","ip_address":"10.73.98.127","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:25:56.525527Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":0,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[{"created_at":"2023-07-03T20:04:44.668293Z","id":"770c6cd2-0583-445c-830b-be5a031fcdbd","ip_address":"10.76.114.93","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:06:27.705072Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"}' headers: Content-Length: - - "1100" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:56 GMT + - Mon, 03 Jul 2023 20:06:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1294,7 +1294,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11cdb722-959e-4796-9cf7-712f5ddb2b2b + - be321700-5bb8-4383-90f4-c6589e14e4b9 status: 200 OK code: 200 duration: "" @@ -1305,19 +1305,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/dc83b294-5adc-4f8f-936d-692052cd52fd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4cf30121-5074-4ff8-9263-be0eaaa2b557 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":0,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[{"created_at":"2023-06-29T13:24:14.607233Z","id":"5e1f9622-d92c-462f-86bf-25e97bd0278b","ip_address":"10.73.98.127","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:25:56.525527Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":0,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[{"created_at":"2023-07-03T20:04:44.668293Z","id":"770c6cd2-0583-445c-830b-be5a031fcdbd","ip_address":"10.76.114.93","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:06:27.705072Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"}' headers: Content-Length: - - "1100" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:56 GMT + - Mon, 03 Jul 2023 20:06:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1327,7 +1327,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d24cbdb3-0da9-4a28-a3b5-06e7ab971cfc + - 6452b22f-c0d0-44da-a1ec-3a8ddfffd99f status: 200 OK code: 200 duration: "" @@ -1338,7 +1338,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f6223f86-f6ef-47f1-a7d3-b61a611c5c36 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/19ee9d12-6cd5-4b24-9deb-95e342a75ab5 method: DELETE response: body: "" @@ -1348,7 +1348,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:57 GMT + - Mon, 03 Jul 2023 20:06:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1358,7 +1358,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd2fb4cb-9f1f-4601-91d9-db316fb7d0c3 + - c9db7232-903d-4868-9aba-4f72e404d001 status: 204 No Content code: 204 duration: "" @@ -1369,19 +1369,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/dc83b294-5adc-4f8f-936d-692052cd52fd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4cf30121-5074-4ff8-9263-be0eaaa2b557 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":0,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[{"created_at":"2023-06-29T13:24:14.607233Z","id":"5e1f9622-d92c-462f-86bf-25e97bd0278b","ip_address":"10.73.98.127","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:25:56.940697Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":0,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[{"created_at":"2023-07-03T20:04:44.668293Z","id":"770c6cd2-0583-445c-830b-be5a031fcdbd","ip_address":"10.76.114.93","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:06:27.987126Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"}' headers: Content-Length: - - "1100" + - "1070" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:57 GMT + - Mon, 03 Jul 2023 20:06:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1391,7 +1391,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c36711a-aeb8-47eb-ada1-484f8c14057d + - 25b9d156-f4a9-4128-a968-142ef3765c69 status: 200 OK code: 200 duration: "" @@ -1402,19 +1402,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/dc83b294-5adc-4f8f-936d-692052cd52fd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4cf30121-5074-4ff8-9263-be0eaaa2b557 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":0,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[{"created_at":"2023-06-29T13:24:14.607233Z","id":"5e1f9622-d92c-462f-86bf-25e97bd0278b","ip_address":"10.73.98.127","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:25:57.192558Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:25:23.479168Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":0,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[{"created_at":"2023-07-03T20:04:44.668293Z","id":"770c6cd2-0583-445c-830b-be5a031fcdbd","ip_address":"10.76.114.93","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:06:28.234460Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:05:54.549191Z","zone":"fr-par-1"}' headers: Content-Length: - - "1098" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:57 GMT + - Mon, 03 Jul 2023 20:06:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1424,7 +1424,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65d2f6af-d149-41a6-ab5c-769020e94872 + - e2177930-6224-483c-936c-4fbe1dcdfb78 status: 200 OK code: 200 duration: "" @@ -1435,7 +1435,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/dc83b294-5adc-4f8f-936d-692052cd52fd?release_ip=false + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4cf30121-5074-4ff8-9263-be0eaaa2b557?release_ip=false method: DELETE response: body: "" @@ -1445,7 +1445,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:57 GMT + - Mon, 03 Jul 2023 20:06:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1455,7 +1455,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f8a6eb0-13b3-4481-b516-621cb870cbd0 + - 9b3ba194-85d0-4b72-af76-e06b553db425 status: 204 No Content code: 204 duration: "" @@ -1466,19 +1466,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/dc83b294-5adc-4f8f-936d-692052cd52fd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4cf30121-5074-4ff8-9263-be0eaaa2b557 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:25:21.464283Z","description":"","frontend_count":0,"id":"dc83b294-5adc-4f8f-936d-692052cd52fd","instances":[{"created_at":"2023-06-29T13:24:14.607233Z","id":"5e1f9622-d92c-462f-86bf-25e97bd0278b","ip_address":"10.73.98.127","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:25:57.192558Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"dc83b294-5adc-4f8f-936d-692052cd52fd","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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":"2023-06-29T13:25:57.350532Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:05:52.043692Z","description":"","frontend_count":0,"id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","instances":[{"created_at":"2023-07-03T20:04:44.668293Z","id":"770c6cd2-0583-445c-830b-be5a031fcdbd","ip_address":"10.76.114.93","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:06:28.234460Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4cf30121-5074-4ff8-9263-be0eaaa2b557","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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":"2023-07-03T20:06:28.396007Z","zone":"fr-par-1"}' headers: Content-Length: - - "1102" + - "1072" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:57 GMT + - Mon, 03 Jul 2023 20:06:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1488,7 +1488,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 892d2c71-264b-456f-8a4d-fafedcc28198 + - b02b4e69-0c33-458b-a371-0c4ce4f58d36 status: 200 OK code: 200 duration: "" @@ -1499,7 +1499,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/dc83b294-5adc-4f8f-936d-692052cd52fd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4cf30121-5074-4ff8-9263-be0eaaa2b557 method: GET response: body: '{"message":"lbs not Found"}' @@ -1511,7 +1511,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:26:27 GMT + - Mon, 03 Jul 2023 20:06:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1521,7 +1521,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c50611d-45a2-46a9-9b10-c09166a7de7e + - 99dfbb05-70d4-49c6-b181-fa0b9e38b479 status: 404 Not Found code: 404 duration: "" @@ -1532,7 +1532,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/dc83b294-5adc-4f8f-936d-692052cd52fd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4cf30121-5074-4ff8-9263-be0eaaa2b557 method: GET response: body: '{"message":"lbs not Found"}' @@ -1544,7 +1544,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:26:27 GMT + - Mon, 03 Jul 2023 20:06:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1554,7 +1554,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b74f72fe-2216-4e17-bff2-7003d75e0929 + - 900f1ca9-2ffc-43a5-8ef0-cc8ef0b2c5a7 status: 404 Not Found code: 404 duration: "" @@ -1565,19 +1565,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c6b47cd5-7fca-4acc-bde4-e32e91f58310 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "287" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:26:28 GMT + - Mon, 03 Jul 2023 20:06:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1587,7 +1587,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ad2fe86-181e-408e-91bb-ec47f2890ee9 + - 678e2642-2e50-4523-840e-3017a8885609 status: 200 OK code: 200 duration: "" @@ -1598,19 +1598,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c6b47cd5-7fca-4acc-bde4-e32e91f58310 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "287" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:26:28 GMT + - Mon, 03 Jul 2023 20:06:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1620,7 +1620,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 777d716a-0b8e-45cb-b16a-eb6aa85d8f6f + - 9e6e8103-6966-4dab-a20b-6a578fd5319f status: 200 OK code: 200 duration: "" @@ -1631,7 +1631,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c6b47cd5-7fca-4acc-bde4-e32e91f58310 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: DELETE response: body: "" @@ -1641,7 +1641,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:26:28 GMT + - Mon, 03 Jul 2023 20:07:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1651,7 +1651,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b6f274d-0c2c-427a-bf86-9db10448cf4c + - ae9c4425-0581-484d-a3f1-8819e136148a status: 204 No Content code: 204 duration: "" diff --git a/scaleway/testdata/lb-frontend-basic.cassette.yaml b/scaleway/testdata/lb-frontend-basic.cassette.yaml index 2a6ee83b8f..6401503efa 100644 --- a/scaleway/testdata/lb-frontend-basic.cassette.yaml +++ b/scaleway/testdata/lb-frontend-basic.cassette.yaml @@ -13,16 +13,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips method: POST response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "285" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:41 GMT + - Mon, 03 Jul 2023 20:10:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -32,7 +32,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5acc13dd-01fb-4748-8ca4-7e3bfd89726f + - cba8e30e-eef5-44db-90d1-d81b346092df status: 200 OK code: 200 duration: "" @@ -43,19 +43,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "285" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:41 GMT + - Mon, 03 Jul 2023 20:10:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -65,12 +65,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc1e1c39-7efc-45ad-970d-053fc469f86c + - acdf7943-f84d-480c-ab3a-f9347e50e0ad status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-lb","description":"","ip_id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","assign_flexible_ip":null,"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":"86df9ff8-7a77-492d-9b03-4f6205127499","assign_flexible_ip":null,"tags":null,"type":"lb-s","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' form: {} headers: Content-Type: @@ -81,16 +81,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs method: POST response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:29:41.596680572Z","description":"","frontend_count":0,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:41.596680572Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:10:22.726442874Z","description":"","frontend_count":0,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:22.726442874Z","zone":"fr-par-1"}' headers: Content-Length: - - "884" + - "862" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:41 GMT + - Mon, 03 Jul 2023 20:10:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -100,7 +100,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a15432fa-831c-44b0-90b8-780a292163bc + - 129eedc2-053b-4587-9b48-4fe24c5af773 status: 200 OK code: 200 duration: "" @@ -111,19 +111,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b3c54da6-3e63-49b8-b97a-2181658806c5 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4adbcdf2-53e7-4e3a-96fc-ba539a25fdab method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":0,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:41.596681Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":0,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[{"created_at":"2023-07-03T20:08:44.615061Z","id":"9b6d12c6-30d2-4185-a7fa-738d602825cd","ip_address":"10.73.136.5","region":"fr-par","status":"unknown","updated_at":"2023-07-03T20:10:22.948275Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:22.726443Z","zone":"fr-par-1"}' headers: Content-Length: - - "878" + - "1069" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:41 GMT + - Mon, 03 Jul 2023 20:10:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -133,7 +133,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 557c2a28-837d-454b-87b0-78f9db206b58 + - cc5af392-627d-4fe6-9e10-949a328db234 status: 200 OK code: 200 duration: "" @@ -144,19 +144,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b3c54da6-3e63-49b8-b97a-2181658806c5 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4adbcdf2-53e7-4e3a-96fc-ba539a25fdab method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":0,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[{"created_at":"2023-06-29T13:28:04.742333Z","id":"9e8380e7-1f02-4f24-a1df-d6688909baca","ip_address":"10.72.0.41","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:29:42.640395Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":0,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[{"created_at":"2023-07-03T20:08:44.615061Z","id":"9b6d12c6-30d2-4185-a7fa-738d602825cd","ip_address":"10.73.136.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:10:23.774899Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"}' headers: Content-Length: - - "1090" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:11 GMT + - Mon, 03 Jul 2023 20:10:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -166,7 +166,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - abb6cbfb-feec-4069-aa3b-19101d0bd2e9 + - ba23c5d1-21d3-48a8-96c1-34f480e5c497 status: 200 OK code: 200 duration: "" @@ -177,19 +177,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b3c54da6-3e63-49b8-b97a-2181658806c5 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4adbcdf2-53e7-4e3a-96fc-ba539a25fdab method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":0,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[{"created_at":"2023-06-29T13:28:04.742333Z","id":"9e8380e7-1f02-4f24-a1df-d6688909baca","ip_address":"10.72.0.41","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:29:42.640395Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":0,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[{"created_at":"2023-07-03T20:08:44.615061Z","id":"9b6d12c6-30d2-4185-a7fa-738d602825cd","ip_address":"10.73.136.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:10:23.774899Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"}' headers: Content-Length: - - "1090" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:11 GMT + - Mon, 03 Jul 2023 20:10:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -199,7 +199,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eff0e553-3a76-4ec6-8607-80f2ec5a1451 + - 493c5e2e-6d15-471a-829f-ad1594569219 status: 200 OK code: 200 duration: "" @@ -210,19 +210,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b3c54da6-3e63-49b8-b97a-2181658806c5/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4adbcdf2-53e7-4e3a-96fc-ba539a25fdab/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:12 GMT + - Mon, 03 Jul 2023 20:10:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -232,7 +232,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e50a9056-983c-4375-b3d8-4cc930fe15db + - 9823ce3c-badd-4ad6-8f5e-210d4fbe9346 status: 200 OK code: 200 duration: "" @@ -243,19 +243,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b3c54da6-3e63-49b8-b97a-2181658806c5 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4adbcdf2-53e7-4e3a-96fc-ba539a25fdab method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":0,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[{"created_at":"2023-06-29T13:28:04.742333Z","id":"9e8380e7-1f02-4f24-a1df-d6688909baca","ip_address":"10.72.0.41","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:29:42.640395Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":0,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[{"created_at":"2023-07-03T20:08:44.615061Z","id":"9b6d12c6-30d2-4185-a7fa-738d602825cd","ip_address":"10.73.136.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:10:23.774899Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"}' headers: Content-Length: - - "1090" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:12 GMT + - Mon, 03 Jul 2023 20:10:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -265,12 +265,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd4cb7cb-67dc-4b64-8a47-d13ee13694eb + - 697b4100-4c64-4ad6-81ef-4b548f8a09bb status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-bkd-thirsty-sinoussi","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":null,"check_delay":60000,"check_timeout":30000},"server_ip":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":null,"max_retries":3,"max_connections":null,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' + body: '{"name":"tf-lb-bkd-happy-chandrasekhar","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":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":null,"max_retries":3,"max_connections":null,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' form: {} headers: Content-Type: @@ -278,19 +278,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b3c54da6-3e63-49b8-b97a-2181658806c5/backends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4adbcdf2-53e7-4e3a-96fc-ba539a25fdab/backends method: POST response: - body: '{"created_at":"2023-06-29T13:30:12.252734573Z","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":null},"id":"e4fffbea-2813-4a46-a8c2-c69a12800a67","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":0,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[{"created_at":"2023-06-29T13:28:04.742333Z","id":"9e8380e7-1f02-4f24-a1df-d6688909baca","ip_address":"10.72.0.41","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:30:12.275742583Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-thirsty-sinoussi","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:30:12.252734573Z"}' + body: '{"created_at":"2023-07-03T20:10:53.425567412Z","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":"81d6fe20-8bc3-4d2f-b3fd-5c9523b67918","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":0,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[{"created_at":"2023-07-03T20:08:44.615061Z","id":"9b6d12c6-30d2-4185-a7fa-738d602825cd","ip_address":"10.73.136.5","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:10:53.455554162Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-happy-chandrasekhar","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:10:53.425567412Z"}' headers: Content-Length: - - "1966" + - "1916" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:12 GMT + - Mon, 03 Jul 2023 20:10:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -300,7 +300,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b099c6a-47dd-4cdb-bac0-c842413fce4c + - 8b9eba4c-785c-4fb7-ae20-c94d3b6f3b05 status: 200 OK code: 200 duration: "" @@ -311,19 +311,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b3c54da6-3e63-49b8-b97a-2181658806c5 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4adbcdf2-53e7-4e3a-96fc-ba539a25fdab method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":0,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[{"created_at":"2023-06-29T13:28:04.742333Z","id":"9e8380e7-1f02-4f24-a1df-d6688909baca","ip_address":"10.72.0.41","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:30:12.275743Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":0,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[{"created_at":"2023-07-03T20:08:44.615061Z","id":"9b6d12c6-30d2-4185-a7fa-738d602825cd","ip_address":"10.73.136.5","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:10:53.455554Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"}' headers: Content-Length: - - "1092" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:12 GMT + - Mon, 03 Jul 2023 20:10:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -333,7 +333,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f07b826-890c-4848-8ca4-77e3fd09a3de + - 947ab9f3-be74-4ffd-8496-f55af9ea997b status: 200 OK code: 200 duration: "" @@ -344,19 +344,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/e4fffbea-2813-4a46-a8c2-c69a12800a67 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/81d6fe20-8bc3-4d2f-b3fd-5c9523b67918 method: GET response: - body: '{"created_at":"2023-06-29T13:30:12.252735Z","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":null},"id":"e4fffbea-2813-4a46-a8c2-c69a12800a67","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":0,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[{"created_at":"2023-06-29T13:28:04.742333Z","id":"9e8380e7-1f02-4f24-a1df-d6688909baca","ip_address":"10.72.0.41","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:30:12.275743Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-thirsty-sinoussi","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:30:12.252735Z"}' + body: '{"created_at":"2023-07-03T20:10:53.425567Z","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":"81d6fe20-8bc3-4d2f-b3fd-5c9523b67918","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":0,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[{"created_at":"2023-07-03T20:08:44.615061Z","id":"9b6d12c6-30d2-4185-a7fa-738d602825cd","ip_address":"10.73.136.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:10:53.803743Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-happy-chandrasekhar","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:10:53.425567Z"}' headers: Content-Length: - - "1957" + - "1905" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:12 GMT + - Mon, 03 Jul 2023 20:10:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -366,7 +366,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a1584cb0-9b36-4406-9c5d-b6dacd456475 + - 306ae2a6-90df-49f8-90b2-29b8ceaffac3 status: 200 OK code: 200 duration: "" @@ -377,19 +377,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b3c54da6-3e63-49b8-b97a-2181658806c5 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4adbcdf2-53e7-4e3a-96fc-ba539a25fdab method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":0,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[{"created_at":"2023-06-29T13:28:04.742333Z","id":"9e8380e7-1f02-4f24-a1df-d6688909baca","ip_address":"10.72.0.41","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:30:12.574485Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":0,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[{"created_at":"2023-07-03T20:08:44.615061Z","id":"9b6d12c6-30d2-4185-a7fa-738d602825cd","ip_address":"10.73.136.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:10:53.803743Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"}' headers: Content-Length: - - "1090" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:12 GMT + - Mon, 03 Jul 2023 20:10:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -399,7 +399,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57202d7c-3962-49fc-aff7-f32cb80430c9 + - dab62fb1-8697-46b2-83dd-502d860c844a status: 200 OK code: 200 duration: "" @@ -410,19 +410,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b3c54da6-3e63-49b8-b97a-2181658806c5 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4adbcdf2-53e7-4e3a-96fc-ba539a25fdab method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":0,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[{"created_at":"2023-06-29T13:28:04.742333Z","id":"9e8380e7-1f02-4f24-a1df-d6688909baca","ip_address":"10.72.0.41","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:30:12.574485Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":0,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[{"created_at":"2023-07-03T20:08:44.615061Z","id":"9b6d12c6-30d2-4185-a7fa-738d602825cd","ip_address":"10.73.136.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:10:53.803743Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"}' headers: Content-Length: - - "1090" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:12 GMT + - Mon, 03 Jul 2023 20:10:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -432,12 +432,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1aca598-36fa-47c7-9323-b3b14d36765e + - 7b056262-c45a-4752-b3a0-170bb89adc5f status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-frt-dreamy-liskov","inbound_port":80,"backend_id":"e4fffbea-2813-4a46-a8c2-c69a12800a67","certificate_ids":null,"enable_http3":false,"timeout_client":null}' + body: '{"name":"tf-lb-frt-musing-faraday","inbound_port":80,"backend_id":"81d6fe20-8bc3-4d2f-b3fd-5c9523b67918","certificate_ids":null,"enable_http3":false,"timeout_client":null}' form: {} headers: Content-Type: @@ -445,19 +445,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b3c54da6-3e63-49b8-b97a-2181658806c5/frontends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4adbcdf2-53e7-4e3a-96fc-ba539a25fdab/frontends method: POST response: - body: '{"backend":{"created_at":"2023-06-29T13:30:12.252735Z","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":null},"id":"e4fffbea-2813-4a46-a8c2-c69a12800a67","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":1,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-thirsty-sinoussi","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:30:12.252735Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:30:12.988759Z","enable_http3":false,"id":"ba428187-a76d-4aa7-9896-e5e286d35c6e","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":1,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[{"created_at":"2023-06-29T13:28:04.742333Z","id":"9e8380e7-1f02-4f24-a1df-d6688909baca","ip_address":"10.72.0.41","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:30:13.067392223Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"},"name":"tf-lb-frt-dreamy-liskov","timeout_client":null,"updated_at":"2023-06-29T13:30:12.988759Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:10:53.425567Z","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":"81d6fe20-8bc3-4d2f-b3fd-5c9523b67918","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":1,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-happy-chandrasekhar","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:10:53.425567Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:10:54.221902Z","enable_http3":false,"id":"46cd9a3d-ed85-4b71-a6ca-e6b1e07dc073","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":1,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[{"created_at":"2023-07-03T20:08:44.615061Z","id":"9b6d12c6-30d2-4185-a7fa-738d602825cd","ip_address":"10.73.136.5","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:10:54.280429645Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"},"name":"tf-lb-frt-musing-faraday","timeout_client":null,"updated_at":"2023-07-03T20:10:54.221902Z"}' headers: Content-Length: - - "3126" + - "3045" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:13 GMT + - Mon, 03 Jul 2023 20:10:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -467,7 +467,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aae4ad87-93e6-4041-994e-0213295ec802 + - 927e27bd-4c85-4f7b-9bcd-1f4490783f37 status: 200 OK code: 200 duration: "" @@ -478,19 +478,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b3c54da6-3e63-49b8-b97a-2181658806c5 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4adbcdf2-53e7-4e3a-96fc-ba539a25fdab method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":1,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[{"created_at":"2023-06-29T13:28:04.742333Z","id":"9e8380e7-1f02-4f24-a1df-d6688909baca","ip_address":"10.72.0.41","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:30:13.067392Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":1,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[{"created_at":"2023-07-03T20:08:44.615061Z","id":"9b6d12c6-30d2-4185-a7fa-738d602825cd","ip_address":"10.73.136.5","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:10:54.280430Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"}' headers: Content-Length: - - "1092" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:13 GMT + - Mon, 03 Jul 2023 20:10:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -500,12 +500,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 51b6e695-205d-4e9a-b738-fd8a2ab0b548 + - 76fc87fa-8379-41b8-8fde-accf3f030550 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-frt-crazy-leakey","inbound_port":80,"backend_id":"e4fffbea-2813-4a46-a8c2-c69a12800a67","certificate_ids":null,"enable_http3":false,"timeout_client":null}' + body: '{"name":"tf-lb-frt-charming-hopper","inbound_port":80,"backend_id":"81d6fe20-8bc3-4d2f-b3fd-5c9523b67918","certificate_ids":null,"enable_http3":false,"timeout_client":null}' form: {} headers: Content-Type: @@ -513,19 +513,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/ba428187-a76d-4aa7-9896-e5e286d35c6e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/46cd9a3d-ed85-4b71-a6ca-e6b1e07dc073 method: PUT response: - body: '{"backend":{"created_at":"2023-06-29T13:30:12.252735Z","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":null},"id":"e4fffbea-2813-4a46-a8c2-c69a12800a67","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":1,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-thirsty-sinoussi","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:30:12.252735Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:30:12.988759Z","enable_http3":false,"id":"ba428187-a76d-4aa7-9896-e5e286d35c6e","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":1,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[{"created_at":"2023-06-29T13:28:04.742333Z","id":"9e8380e7-1f02-4f24-a1df-d6688909baca","ip_address":"10.72.0.41","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:30:13.473548237Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"},"name":"tf-lb-frt-crazy-leakey","timeout_client":null,"updated_at":"2023-06-29T13:30:13.432528011Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:10:53.425567Z","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":"81d6fe20-8bc3-4d2f-b3fd-5c9523b67918","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":1,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-happy-chandrasekhar","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:10:53.425567Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:10:54.221902Z","enable_http3":false,"id":"46cd9a3d-ed85-4b71-a6ca-e6b1e07dc073","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":1,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[{"created_at":"2023-07-03T20:08:44.615061Z","id":"9b6d12c6-30d2-4185-a7fa-738d602825cd","ip_address":"10.73.136.5","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:10:54.680975177Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"},"name":"tf-lb-frt-charming-hopper","timeout_client":null,"updated_at":"2023-07-03T20:10:54.656635386Z"}' headers: Content-Length: - - "3128" + - "3049" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:13 GMT + - Mon, 03 Jul 2023 20:10:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -535,7 +535,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba2a96b5-9ef8-4426-a75a-f0a6a1ccd403 + - d9272150-74e3-4a27-a6ec-441e7bcca7d2 status: 200 OK code: 200 duration: "" @@ -546,19 +546,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/ba428187-a76d-4aa7-9896-e5e286d35c6e/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/46cd9a3d-ed85-4b71-a6ca-e6b1e07dc073/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:13 GMT + - Mon, 03 Jul 2023 20:10:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -568,7 +568,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2632d3f-3ceb-4e53-ac83-fbe734575b37 + - dcbc92f9-d07f-4a7d-9e03-fefd419e97c5 status: 200 OK code: 200 duration: "" @@ -579,19 +579,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/ba428187-a76d-4aa7-9896-e5e286d35c6e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/46cd9a3d-ed85-4b71-a6ca-e6b1e07dc073 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:30:12.252735Z","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":null},"id":"e4fffbea-2813-4a46-a8c2-c69a12800a67","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":1,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-thirsty-sinoussi","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:30:12.252735Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:30:12.988759Z","enable_http3":false,"id":"ba428187-a76d-4aa7-9896-e5e286d35c6e","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":1,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"},"name":"tf-lb-frt-crazy-leakey","timeout_client":null,"updated_at":"2023-06-29T13:30:13.432528Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:10:53.425567Z","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":"81d6fe20-8bc3-4d2f-b3fd-5c9523b67918","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":1,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-happy-chandrasekhar","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:10:53.425567Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:10:54.221902Z","enable_http3":false,"id":"46cd9a3d-ed85-4b71-a6ca-e6b1e07dc073","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":1,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"},"name":"tf-lb-frt-charming-hopper","timeout_client":null,"updated_at":"2023-07-03T20:10:54.656635Z"}' headers: Content-Length: - - "2904" + - "2830" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:13 GMT + - Mon, 03 Jul 2023 20:10:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -601,7 +601,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 24728e22-61e5-4539-b83d-55e5f7c56652 + - 3d8a2aa9-f5ac-4ce1-824b-1f530aaa7ccc status: 200 OK code: 200 duration: "" @@ -612,19 +612,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/ba428187-a76d-4aa7-9896-e5e286d35c6e/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/46cd9a3d-ed85-4b71-a6ca-e6b1e07dc073/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:13 GMT + - Mon, 03 Jul 2023 20:10:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -634,7 +634,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e43613d-792d-47fd-8dbe-0d25bd345b97 + - 9290ef9a-2681-4624-bd81-c85da6e085f2 status: 200 OK code: 200 duration: "" @@ -645,19 +645,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/ba428187-a76d-4aa7-9896-e5e286d35c6e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/46cd9a3d-ed85-4b71-a6ca-e6b1e07dc073 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:30:12.252735Z","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":null},"id":"e4fffbea-2813-4a46-a8c2-c69a12800a67","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":1,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-thirsty-sinoussi","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:30:12.252735Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:30:12.988759Z","enable_http3":false,"id":"ba428187-a76d-4aa7-9896-e5e286d35c6e","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":1,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"},"name":"tf-lb-frt-crazy-leakey","timeout_client":null,"updated_at":"2023-06-29T13:30:13.432528Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:10:53.425567Z","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":"81d6fe20-8bc3-4d2f-b3fd-5c9523b67918","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":1,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-happy-chandrasekhar","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:10:53.425567Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:10:54.221902Z","enable_http3":false,"id":"46cd9a3d-ed85-4b71-a6ca-e6b1e07dc073","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":1,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"},"name":"tf-lb-frt-charming-hopper","timeout_client":null,"updated_at":"2023-07-03T20:10:54.656635Z"}' headers: Content-Length: - - "2904" + - "2830" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:14 GMT + - Mon, 03 Jul 2023 20:10:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -667,7 +667,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a045e78-28b2-4acc-b014-fcaf53f0c679 + - 5979faa2-2674-442a-8852-c32e79dbcc48 status: 200 OK code: 200 duration: "" @@ -678,19 +678,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "319" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:14 GMT + - Mon, 03 Jul 2023 20:10:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -700,7 +700,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3d04c71-9244-4920-bacc-6205021559f9 + - a329c355-cf73-41aa-8672-44fe91255939 status: 200 OK code: 200 duration: "" @@ -711,19 +711,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b3c54da6-3e63-49b8-b97a-2181658806c5 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4adbcdf2-53e7-4e3a-96fc-ba539a25fdab method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":1,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[{"created_at":"2023-06-29T13:28:04.742333Z","id":"9e8380e7-1f02-4f24-a1df-d6688909baca","ip_address":"10.72.0.41","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:30:13.811473Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":1,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[{"created_at":"2023-07-03T20:08:44.615061Z","id":"9b6d12c6-30d2-4185-a7fa-738d602825cd","ip_address":"10.73.136.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:10:54.964381Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"}' headers: Content-Length: - - "1090" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:14 GMT + - Mon, 03 Jul 2023 20:10:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -733,7 +733,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2312d98-0d14-472e-8dd7-a29be6dde3cd + - 7c80c62c-1ba9-49c6-930d-25723552d230 status: 200 OK code: 200 duration: "" @@ -744,19 +744,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b3c54da6-3e63-49b8-b97a-2181658806c5 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4adbcdf2-53e7-4e3a-96fc-ba539a25fdab method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":1,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[{"created_at":"2023-06-29T13:28:04.742333Z","id":"9e8380e7-1f02-4f24-a1df-d6688909baca","ip_address":"10.72.0.41","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:30:13.811473Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":1,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[{"created_at":"2023-07-03T20:08:44.615061Z","id":"9b6d12c6-30d2-4185-a7fa-738d602825cd","ip_address":"10.73.136.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:10:54.964381Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"}' headers: Content-Length: - - "1090" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:14 GMT + - Mon, 03 Jul 2023 20:10:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -766,7 +766,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5bae1404-057d-40cc-a703-52093cddf950 + - fbba3b63-a98f-435c-aec1-d95244544eaf status: 200 OK code: 200 duration: "" @@ -777,19 +777,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b3c54da6-3e63-49b8-b97a-2181658806c5/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4adbcdf2-53e7-4e3a-96fc-ba539a25fdab/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:14 GMT + - Mon, 03 Jul 2023 20:10:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -799,7 +799,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65fc4b42-351a-412c-898d-32eaffd2c821 + - 34afea2d-108c-4b14-a408-f6b73bd823b0 status: 200 OK code: 200 duration: "" @@ -810,19 +810,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/e4fffbea-2813-4a46-a8c2-c69a12800a67 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/81d6fe20-8bc3-4d2f-b3fd-5c9523b67918 method: GET response: - body: '{"created_at":"2023-06-29T13:30:12.252735Z","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":null},"id":"e4fffbea-2813-4a46-a8c2-c69a12800a67","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":1,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[{"created_at":"2023-06-29T13:28:04.742333Z","id":"9e8380e7-1f02-4f24-a1df-d6688909baca","ip_address":"10.72.0.41","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:30:13.811473Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-thirsty-sinoussi","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:30:12.252735Z"}' + body: '{"created_at":"2023-07-03T20:10:53.425567Z","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":"81d6fe20-8bc3-4d2f-b3fd-5c9523b67918","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":1,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[{"created_at":"2023-07-03T20:08:44.615061Z","id":"9b6d12c6-30d2-4185-a7fa-738d602825cd","ip_address":"10.73.136.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:10:54.964381Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-happy-chandrasekhar","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:10:53.425567Z"}' headers: Content-Length: - - "1955" + - "1905" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:14 GMT + - Mon, 03 Jul 2023 20:10:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -832,7 +832,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f74d114-e1a2-4ddd-9360-c9e8f7ba3387 + - 87c860ee-7f90-4b71-8855-70e20c0ffd38 status: 200 OK code: 200 duration: "" @@ -843,19 +843,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b3c54da6-3e63-49b8-b97a-2181658806c5 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4adbcdf2-53e7-4e3a-96fc-ba539a25fdab method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":1,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[{"created_at":"2023-06-29T13:28:04.742333Z","id":"9e8380e7-1f02-4f24-a1df-d6688909baca","ip_address":"10.72.0.41","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:30:13.811473Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":1,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[{"created_at":"2023-07-03T20:08:44.615061Z","id":"9b6d12c6-30d2-4185-a7fa-738d602825cd","ip_address":"10.73.136.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:10:54.964381Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"}' headers: Content-Length: - - "1090" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:14 GMT + - Mon, 03 Jul 2023 20:10:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -865,7 +865,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60418f4d-1170-4d15-8ddc-129dfe92ada2 + - 6dc354c2-67a9-408f-8f8b-00af5829442c status: 200 OK code: 200 duration: "" @@ -876,19 +876,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/ba428187-a76d-4aa7-9896-e5e286d35c6e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/46cd9a3d-ed85-4b71-a6ca-e6b1e07dc073 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:30:12.252735Z","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":null},"id":"e4fffbea-2813-4a46-a8c2-c69a12800a67","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":1,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-thirsty-sinoussi","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:30:12.252735Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:30:12.988759Z","enable_http3":false,"id":"ba428187-a76d-4aa7-9896-e5e286d35c6e","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":1,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"},"name":"tf-lb-frt-crazy-leakey","timeout_client":null,"updated_at":"2023-06-29T13:30:13.432528Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:10:53.425567Z","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":"81d6fe20-8bc3-4d2f-b3fd-5c9523b67918","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":1,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-happy-chandrasekhar","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:10:53.425567Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:10:54.221902Z","enable_http3":false,"id":"46cd9a3d-ed85-4b71-a6ca-e6b1e07dc073","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":1,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"},"name":"tf-lb-frt-charming-hopper","timeout_client":null,"updated_at":"2023-07-03T20:10:54.656635Z"}' headers: Content-Length: - - "2904" + - "2830" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:14 GMT + - Mon, 03 Jul 2023 20:10:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -898,7 +898,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f45c0be-d6e7-46e2-827e-f8d6b31550c9 + - a84c7300-61fd-4837-8755-48e5a88f37ef status: 200 OK code: 200 duration: "" @@ -909,19 +909,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/ba428187-a76d-4aa7-9896-e5e286d35c6e/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/46cd9a3d-ed85-4b71-a6ca-e6b1e07dc073/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:15 GMT + - Mon, 03 Jul 2023 20:10:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -931,7 +931,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 412420e5-a2ea-4378-957e-388ba3598cc4 + - 7af1f28a-cf2e-4df4-9441-9fea4dc5d8ca status: 200 OK code: 200 duration: "" @@ -942,19 +942,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "319" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:15 GMT + - Mon, 03 Jul 2023 20:10:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -964,7 +964,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8f54b27-cc30-4427-b426-d1d08070171e + - 82566d70-2e61-4f50-a5d8-d70e0d21c3e6 status: 200 OK code: 200 duration: "" @@ -975,19 +975,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b3c54da6-3e63-49b8-b97a-2181658806c5 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4adbcdf2-53e7-4e3a-96fc-ba539a25fdab method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":1,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[{"created_at":"2023-06-29T13:28:04.742333Z","id":"9e8380e7-1f02-4f24-a1df-d6688909baca","ip_address":"10.72.0.41","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:30:13.811473Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":1,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[{"created_at":"2023-07-03T20:08:44.615061Z","id":"9b6d12c6-30d2-4185-a7fa-738d602825cd","ip_address":"10.73.136.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:10:54.964381Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"}' headers: Content-Length: - - "1090" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:15 GMT + - Mon, 03 Jul 2023 20:10:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -997,7 +997,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6356f518-b975-4d3a-9be3-fd0a5cd87b4d + - 222b4f0d-4506-455a-b0fe-d98785981bd2 status: 200 OK code: 200 duration: "" @@ -1008,19 +1008,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b3c54da6-3e63-49b8-b97a-2181658806c5 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4adbcdf2-53e7-4e3a-96fc-ba539a25fdab method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":1,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[{"created_at":"2023-06-29T13:28:04.742333Z","id":"9e8380e7-1f02-4f24-a1df-d6688909baca","ip_address":"10.72.0.41","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:30:13.811473Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":1,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[{"created_at":"2023-07-03T20:08:44.615061Z","id":"9b6d12c6-30d2-4185-a7fa-738d602825cd","ip_address":"10.73.136.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:10:54.964381Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"}' headers: Content-Length: - - "1090" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:15 GMT + - Mon, 03 Jul 2023 20:10:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1030,7 +1030,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ecad3357-f601-45d4-85f8-c7030dada3c8 + - 4ebd64f8-e987-43c8-a823-d13e6ad98b5e status: 200 OK code: 200 duration: "" @@ -1041,19 +1041,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b3c54da6-3e63-49b8-b97a-2181658806c5/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4adbcdf2-53e7-4e3a-96fc-ba539a25fdab/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:15 GMT + - Mon, 03 Jul 2023 20:10:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1063,7 +1063,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e1b6d56-2e95-49eb-994c-1a7f29727130 + - 983a3970-31d9-49b3-9430-226048ed94b0 status: 200 OK code: 200 duration: "" @@ -1074,19 +1074,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/e4fffbea-2813-4a46-a8c2-c69a12800a67 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/81d6fe20-8bc3-4d2f-b3fd-5c9523b67918 method: GET response: - body: '{"created_at":"2023-06-29T13:30:12.252735Z","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":null},"id":"e4fffbea-2813-4a46-a8c2-c69a12800a67","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":1,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[{"created_at":"2023-06-29T13:28:04.742333Z","id":"9e8380e7-1f02-4f24-a1df-d6688909baca","ip_address":"10.72.0.41","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:30:13.811473Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-thirsty-sinoussi","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:30:12.252735Z"}' + body: '{"created_at":"2023-07-03T20:10:53.425567Z","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":"81d6fe20-8bc3-4d2f-b3fd-5c9523b67918","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":1,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[{"created_at":"2023-07-03T20:08:44.615061Z","id":"9b6d12c6-30d2-4185-a7fa-738d602825cd","ip_address":"10.73.136.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:10:54.964381Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-happy-chandrasekhar","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:10:53.425567Z"}' headers: Content-Length: - - "1955" + - "1905" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:15 GMT + - Mon, 03 Jul 2023 20:10:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1096,7 +1096,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67e38ff3-5cfa-42c3-b8c5-81fc36848d42 + - 8b633aa1-75a5-4a12-aa4c-6bc4f3e8571b status: 200 OK code: 200 duration: "" @@ -1107,19 +1107,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b3c54da6-3e63-49b8-b97a-2181658806c5 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4adbcdf2-53e7-4e3a-96fc-ba539a25fdab method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":1,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[{"created_at":"2023-06-29T13:28:04.742333Z","id":"9e8380e7-1f02-4f24-a1df-d6688909baca","ip_address":"10.72.0.41","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:30:13.811473Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":1,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[{"created_at":"2023-07-03T20:08:44.615061Z","id":"9b6d12c6-30d2-4185-a7fa-738d602825cd","ip_address":"10.73.136.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:10:54.964381Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"}' headers: Content-Length: - - "1090" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:15 GMT + - Mon, 03 Jul 2023 20:10:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1129,7 +1129,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41b2d223-176a-44f0-94ee-9f6dadfdcb18 + - 78905ce4-e86f-479e-9cb9-109958a6b07f status: 200 OK code: 200 duration: "" @@ -1140,19 +1140,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/ba428187-a76d-4aa7-9896-e5e286d35c6e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/46cd9a3d-ed85-4b71-a6ca-e6b1e07dc073 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:30:12.252735Z","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":null},"id":"e4fffbea-2813-4a46-a8c2-c69a12800a67","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":1,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-thirsty-sinoussi","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:30:12.252735Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:30:12.988759Z","enable_http3":false,"id":"ba428187-a76d-4aa7-9896-e5e286d35c6e","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":1,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"},"name":"tf-lb-frt-crazy-leakey","timeout_client":null,"updated_at":"2023-06-29T13:30:13.432528Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:10:53.425567Z","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":"81d6fe20-8bc3-4d2f-b3fd-5c9523b67918","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":1,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-happy-chandrasekhar","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:10:53.425567Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:10:54.221902Z","enable_http3":false,"id":"46cd9a3d-ed85-4b71-a6ca-e6b1e07dc073","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":1,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"},"name":"tf-lb-frt-charming-hopper","timeout_client":null,"updated_at":"2023-07-03T20:10:54.656635Z"}' headers: Content-Length: - - "2904" + - "2830" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:15 GMT + - Mon, 03 Jul 2023 20:10:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1162,7 +1162,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54b2458a-8e62-4758-9b0f-977cecb4faf2 + - 99a6191c-f579-406b-abc8-c7da8d80604b status: 200 OK code: 200 duration: "" @@ -1173,19 +1173,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/ba428187-a76d-4aa7-9896-e5e286d35c6e/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/46cd9a3d-ed85-4b71-a6ca-e6b1e07dc073/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:16 GMT + - Mon, 03 Jul 2023 20:10:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1195,7 +1195,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c62b04d-4c02-49fa-811c-58fd61847f98 + - acd934da-51ad-44b6-b1d6-500e5e1da5af status: 200 OK code: 200 duration: "" @@ -1206,19 +1206,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b3c54da6-3e63-49b8-b97a-2181658806c5 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4adbcdf2-53e7-4e3a-96fc-ba539a25fdab method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":1,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[{"created_at":"2023-06-29T13:28:04.742333Z","id":"9e8380e7-1f02-4f24-a1df-d6688909baca","ip_address":"10.72.0.41","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:30:13.811473Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":1,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[{"created_at":"2023-07-03T20:08:44.615061Z","id":"9b6d12c6-30d2-4185-a7fa-738d602825cd","ip_address":"10.73.136.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:10:54.964381Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"}' headers: Content-Length: - - "1090" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:16 GMT + - Mon, 03 Jul 2023 20:10:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1228,12 +1228,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05d522be-1070-4ea6-b07c-b52ba0766906 + - 78e082cc-8b52-4904-80e2-23976e0e1825 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-test","inbound_port":443,"backend_id":"e4fffbea-2813-4a46-a8c2-c69a12800a67","certificate_ids":null,"enable_http3":true,"timeout_client":30000}' + body: '{"name":"tf-test","inbound_port":443,"backend_id":"81d6fe20-8bc3-4d2f-b3fd-5c9523b67918","certificate_ids":null,"enable_http3":true,"timeout_client":30000}' form: {} headers: Content-Type: @@ -1241,19 +1241,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/ba428187-a76d-4aa7-9896-e5e286d35c6e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/46cd9a3d-ed85-4b71-a6ca-e6b1e07dc073 method: PUT response: - body: '{"backend":{"created_at":"2023-06-29T13:30:12.252735Z","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":null},"id":"e4fffbea-2813-4a46-a8c2-c69a12800a67","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":1,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-thirsty-sinoussi","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:30:12.252735Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:30:12.988759Z","enable_http3":true,"id":"ba428187-a76d-4aa7-9896-e5e286d35c6e","inbound_port":443,"lb":{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":1,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[{"created_at":"2023-06-29T13:28:04.742333Z","id":"9e8380e7-1f02-4f24-a1df-d6688909baca","ip_address":"10.72.0.41","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:30:16.872483799Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:30:16.836955786Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:10:53.425567Z","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":"81d6fe20-8bc3-4d2f-b3fd-5c9523b67918","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":1,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-happy-chandrasekhar","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:10:53.425567Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:10:54.221902Z","enable_http3":true,"id":"46cd9a3d-ed85-4b71-a6ca-e6b1e07dc073","inbound_port":443,"lb":{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":1,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[{"created_at":"2023-07-03T20:08:44.615061Z","id":"9b6d12c6-30d2-4185-a7fa-738d602825cd","ip_address":"10.73.136.5","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:10:58.005238126Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:10:57.973618880Z"}' headers: Content-Length: - - "3114" + - "3032" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:17 GMT + - Mon, 03 Jul 2023 20:10:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1263,7 +1263,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7afd4506-d603-43c5-88be-1bf8223cc81e + - 6c1f1b9b-1485-498c-9a4f-1372a2041e04 status: 200 OK code: 200 duration: "" @@ -1274,19 +1274,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/ba428187-a76d-4aa7-9896-e5e286d35c6e/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/46cd9a3d-ed85-4b71-a6ca-e6b1e07dc073/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:17 GMT + - Mon, 03 Jul 2023 20:10:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1296,7 +1296,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d06b275c-84c6-400f-8636-9b8eb848d286 + - 87bce3e4-7101-49e3-ad1c-8e8c1abd1aed status: 200 OK code: 200 duration: "" @@ -1307,19 +1307,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/ba428187-a76d-4aa7-9896-e5e286d35c6e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/46cd9a3d-ed85-4b71-a6ca-e6b1e07dc073 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:30:12.252735Z","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":null},"id":"e4fffbea-2813-4a46-a8c2-c69a12800a67","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":1,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-thirsty-sinoussi","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:30:12.252735Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:30:12.988759Z","enable_http3":true,"id":"ba428187-a76d-4aa7-9896-e5e286d35c6e","inbound_port":443,"lb":{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":1,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:30:16.836956Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:10:53.425567Z","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":"81d6fe20-8bc3-4d2f-b3fd-5c9523b67918","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":1,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-happy-chandrasekhar","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:10:53.425567Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:10:54.221902Z","enable_http3":true,"id":"46cd9a3d-ed85-4b71-a6ca-e6b1e07dc073","inbound_port":443,"lb":{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":1,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:10:57.973619Z"}' headers: Content-Length: - - "2890" + - "2813" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:17 GMT + - Mon, 03 Jul 2023 20:10:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1329,7 +1329,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf76740f-7c05-473d-bc0a-3323efa0c53e + - c3662f90-823c-4282-b11c-9ebcd6c02cc6 status: 200 OK code: 200 duration: "" @@ -1340,19 +1340,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/ba428187-a76d-4aa7-9896-e5e286d35c6e/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/46cd9a3d-ed85-4b71-a6ca-e6b1e07dc073/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:17 GMT + - Mon, 03 Jul 2023 20:10:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1362,7 +1362,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d9dc895-6321-466d-935d-7b65942bb73a + - 9893a96e-90fc-4286-97da-200469c4e65c status: 200 OK code: 200 duration: "" @@ -1373,19 +1373,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/ba428187-a76d-4aa7-9896-e5e286d35c6e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/46cd9a3d-ed85-4b71-a6ca-e6b1e07dc073 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:30:12.252735Z","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":null},"id":"e4fffbea-2813-4a46-a8c2-c69a12800a67","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":1,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-thirsty-sinoussi","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:30:12.252735Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:30:12.988759Z","enable_http3":true,"id":"ba428187-a76d-4aa7-9896-e5e286d35c6e","inbound_port":443,"lb":{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":1,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:30:16.836956Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:10:53.425567Z","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":"81d6fe20-8bc3-4d2f-b3fd-5c9523b67918","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":1,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-happy-chandrasekhar","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:10:53.425567Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:10:54.221902Z","enable_http3":true,"id":"46cd9a3d-ed85-4b71-a6ca-e6b1e07dc073","inbound_port":443,"lb":{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":1,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:10:57.973619Z"}' headers: Content-Length: - - "2890" + - "2813" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:17 GMT + - Mon, 03 Jul 2023 20:10:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1395,7 +1395,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2663ea7c-f59d-4539-8624-f48e682baf71 + - f44c4b77-a010-49f8-ab1a-71e74c49ea9f status: 200 OK code: 200 duration: "" @@ -1406,19 +1406,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "319" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:17 GMT + - Mon, 03 Jul 2023 20:10:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1428,7 +1428,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b53d193-a420-4395-b991-fab48f7bb6da + - 3a5a02be-51f3-4c8c-83a5-82f1b20a0aa5 status: 200 OK code: 200 duration: "" @@ -1439,19 +1439,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b3c54da6-3e63-49b8-b97a-2181658806c5 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4adbcdf2-53e7-4e3a-96fc-ba539a25fdab method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":1,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[{"created_at":"2023-06-29T13:28:04.742333Z","id":"9e8380e7-1f02-4f24-a1df-d6688909baca","ip_address":"10.72.0.41","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:30:17.158817Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":1,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[{"created_at":"2023-07-03T20:08:44.615061Z","id":"9b6d12c6-30d2-4185-a7fa-738d602825cd","ip_address":"10.73.136.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:10:58.280764Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"}' headers: Content-Length: - - "1090" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:17 GMT + - Mon, 03 Jul 2023 20:10:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1461,7 +1461,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6fd103fc-6e1f-4340-a12d-4c52be7820e0 + - 96b0820e-6f28-485d-9fbd-8d3c61301bcd status: 200 OK code: 200 duration: "" @@ -1472,19 +1472,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b3c54da6-3e63-49b8-b97a-2181658806c5 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4adbcdf2-53e7-4e3a-96fc-ba539a25fdab method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":1,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[{"created_at":"2023-06-29T13:28:04.742333Z","id":"9e8380e7-1f02-4f24-a1df-d6688909baca","ip_address":"10.72.0.41","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:30:17.158817Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":1,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[{"created_at":"2023-07-03T20:08:44.615061Z","id":"9b6d12c6-30d2-4185-a7fa-738d602825cd","ip_address":"10.73.136.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:10:58.280764Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"}' headers: Content-Length: - - "1090" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:18 GMT + - Mon, 03 Jul 2023 20:10:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1494,7 +1494,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b207e29e-a48f-40b5-82b1-303b772eee28 + - 4e1b8eba-08f7-472a-8c44-ba67bea42d55 status: 200 OK code: 200 duration: "" @@ -1505,19 +1505,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b3c54da6-3e63-49b8-b97a-2181658806c5/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4adbcdf2-53e7-4e3a-96fc-ba539a25fdab/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:18 GMT + - Mon, 03 Jul 2023 20:10:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1527,7 +1527,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e8ffc23-c098-42f0-afb9-927598e05270 + - c6af1cf6-2571-4ef5-aa31-66ae314d6084 status: 200 OK code: 200 duration: "" @@ -1538,19 +1538,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/e4fffbea-2813-4a46-a8c2-c69a12800a67 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/81d6fe20-8bc3-4d2f-b3fd-5c9523b67918 method: GET response: - body: '{"created_at":"2023-06-29T13:30:12.252735Z","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":null},"id":"e4fffbea-2813-4a46-a8c2-c69a12800a67","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":1,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[{"created_at":"2023-06-29T13:28:04.742333Z","id":"9e8380e7-1f02-4f24-a1df-d6688909baca","ip_address":"10.72.0.41","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:30:17.158817Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-thirsty-sinoussi","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:30:12.252735Z"}' + body: '{"created_at":"2023-07-03T20:10:53.425567Z","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":"81d6fe20-8bc3-4d2f-b3fd-5c9523b67918","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":1,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[{"created_at":"2023-07-03T20:08:44.615061Z","id":"9b6d12c6-30d2-4185-a7fa-738d602825cd","ip_address":"10.73.136.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:10:58.280764Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-happy-chandrasekhar","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:10:53.425567Z"}' headers: Content-Length: - - "1955" + - "1905" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:18 GMT + - Mon, 03 Jul 2023 20:10:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1560,7 +1560,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff7fff27-b1e7-406b-bcd2-ec826ec9a866 + - a498be49-7598-41d0-ae02-3c6bbe03367e status: 200 OK code: 200 duration: "" @@ -1571,19 +1571,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b3c54da6-3e63-49b8-b97a-2181658806c5 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4adbcdf2-53e7-4e3a-96fc-ba539a25fdab method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":1,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[{"created_at":"2023-06-29T13:28:04.742333Z","id":"9e8380e7-1f02-4f24-a1df-d6688909baca","ip_address":"10.72.0.41","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:30:17.158817Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":1,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[{"created_at":"2023-07-03T20:08:44.615061Z","id":"9b6d12c6-30d2-4185-a7fa-738d602825cd","ip_address":"10.73.136.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:10:58.280764Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"}' headers: Content-Length: - - "1090" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:18 GMT + - Mon, 03 Jul 2023 20:10:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1593,7 +1593,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d628c36d-6de9-4552-a019-11d56e049082 + - 5a94c16f-4992-493a-854d-36fef0ffd87a status: 200 OK code: 200 duration: "" @@ -1604,19 +1604,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/ba428187-a76d-4aa7-9896-e5e286d35c6e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/46cd9a3d-ed85-4b71-a6ca-e6b1e07dc073 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:30:12.252735Z","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":null},"id":"e4fffbea-2813-4a46-a8c2-c69a12800a67","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":1,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-thirsty-sinoussi","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:30:12.252735Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:30:12.988759Z","enable_http3":true,"id":"ba428187-a76d-4aa7-9896-e5e286d35c6e","inbound_port":443,"lb":{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":1,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:30:16.836956Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:10:53.425567Z","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":"81d6fe20-8bc3-4d2f-b3fd-5c9523b67918","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":1,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-happy-chandrasekhar","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:10:53.425567Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:10:54.221902Z","enable_http3":true,"id":"46cd9a3d-ed85-4b71-a6ca-e6b1e07dc073","inbound_port":443,"lb":{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":1,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:10:57.973619Z"}' headers: Content-Length: - - "2890" + - "2813" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:18 GMT + - Mon, 03 Jul 2023 20:10:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1626,7 +1626,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca9576ab-5a08-4d82-9cfd-8d3ae56a8001 + - 553165fe-a4b1-4de8-8f04-ef484ca742a2 status: 200 OK code: 200 duration: "" @@ -1637,19 +1637,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/ba428187-a76d-4aa7-9896-e5e286d35c6e/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/46cd9a3d-ed85-4b71-a6ca-e6b1e07dc073/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:18 GMT + - Mon, 03 Jul 2023 20:10:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1659,7 +1659,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f20b5157-c5ff-4bf8-b2d0-5c4b241670ac + - 9c6d12c8-8804-431c-9dd5-adb3083097a6 status: 200 OK code: 200 duration: "" @@ -1670,7 +1670,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/ba428187-a76d-4aa7-9896-e5e286d35c6e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/46cd9a3d-ed85-4b71-a6ca-e6b1e07dc073 method: DELETE response: body: "" @@ -1680,7 +1680,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:19 GMT + - Mon, 03 Jul 2023 20:11:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1690,7 +1690,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6331ed5-29d0-49b2-a81e-45ca69605190 + - 8e165769-32f7-4e81-be3a-7338e952cbb6 status: 204 No Content code: 204 duration: "" @@ -1701,19 +1701,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b3c54da6-3e63-49b8-b97a-2181658806c5 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4adbcdf2-53e7-4e3a-96fc-ba539a25fdab method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":0,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[{"created_at":"2023-06-29T13:28:04.742333Z","id":"9e8380e7-1f02-4f24-a1df-d6688909baca","ip_address":"10.72.0.41","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:30:19.032747Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":0,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[{"created_at":"2023-07-03T20:08:44.615061Z","id":"9b6d12c6-30d2-4185-a7fa-738d602825cd","ip_address":"10.73.136.5","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:11:00.347339Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"}' headers: Content-Length: - - "1092" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:19 GMT + - Mon, 03 Jul 2023 20:11:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1723,7 +1723,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b5c792a-aab3-4f7f-bdb4-b709bc2acbea + - 30d1113c-bf39-47a9-b902-e99ffe56984d status: 200 OK code: 200 duration: "" @@ -1734,19 +1734,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b3c54da6-3e63-49b8-b97a-2181658806c5 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4adbcdf2-53e7-4e3a-96fc-ba539a25fdab method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":0,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[{"created_at":"2023-06-29T13:28:04.742333Z","id":"9e8380e7-1f02-4f24-a1df-d6688909baca","ip_address":"10.72.0.41","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:30:19.032747Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":0,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[{"created_at":"2023-07-03T20:08:44.615061Z","id":"9b6d12c6-30d2-4185-a7fa-738d602825cd","ip_address":"10.73.136.5","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:11:00.347339Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"}' headers: Content-Length: - - "1092" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:19 GMT + - Mon, 03 Jul 2023 20:11:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1756,7 +1756,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15a7227b-9303-4186-8585-17533b026003 + - 74f01cc8-4c7a-419a-8736-d5605b88dcf7 status: 200 OK code: 200 duration: "" @@ -1767,7 +1767,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/e4fffbea-2813-4a46-a8c2-c69a12800a67 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/81d6fe20-8bc3-4d2f-b3fd-5c9523b67918 method: DELETE response: body: "" @@ -1777,7 +1777,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:19 GMT + - Mon, 03 Jul 2023 20:11:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1787,7 +1787,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd68b590-302f-4233-954a-78b0c421680e + - 18b8b357-82d5-454d-8650-b22457a8721a status: 204 No Content code: 204 duration: "" @@ -1798,19 +1798,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b3c54da6-3e63-49b8-b97a-2181658806c5 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4adbcdf2-53e7-4e3a-96fc-ba539a25fdab method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":0,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[{"created_at":"2023-06-29T13:28:04.742333Z","id":"9e8380e7-1f02-4f24-a1df-d6688909baca","ip_address":"10.72.0.41","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:30:19.456826Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":0,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[{"created_at":"2023-07-03T20:08:44.615061Z","id":"9b6d12c6-30d2-4185-a7fa-738d602825cd","ip_address":"10.73.136.5","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:11:00.744805Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"}' headers: Content-Length: - - "1092" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:19 GMT + - Mon, 03 Jul 2023 20:11:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1820,7 +1820,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9d8e41e-e012-4831-9619-83f04b73e84e + - 8350ea4b-e65f-4440-8f39-463522fcc48f status: 200 OK code: 200 duration: "" @@ -1831,19 +1831,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b3c54da6-3e63-49b8-b97a-2181658806c5 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4adbcdf2-53e7-4e3a-96fc-ba539a25fdab method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":0,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[{"created_at":"2023-06-29T13:28:04.742333Z","id":"9e8380e7-1f02-4f24-a1df-d6688909baca","ip_address":"10.72.0.41","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:30:19.456826Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:43.673108Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":0,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[{"created_at":"2023-07-03T20:08:44.615061Z","id":"9b6d12c6-30d2-4185-a7fa-738d602825cd","ip_address":"10.73.136.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:11:00.972143Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:10:24.871500Z","zone":"fr-par-1"}' headers: Content-Length: - - "1092" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:19 GMT + - Mon, 03 Jul 2023 20:11:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1853,7 +1853,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb22420b-1c84-4610-af6e-70e7ff4ac72d + - cb2d56c6-0c5e-4cee-8cda-5bbfa08b97e2 status: 200 OK code: 200 duration: "" @@ -1864,7 +1864,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b3c54da6-3e63-49b8-b97a-2181658806c5?release_ip=false + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4adbcdf2-53e7-4e3a-96fc-ba539a25fdab?release_ip=false method: DELETE response: body: "" @@ -1874,7 +1874,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:20 GMT + - Mon, 03 Jul 2023 20:11:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1884,7 +1884,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d3966e5-b7e1-4899-bd6a-f0c62d3b969f + - c5cb9495-e867-45c1-a1e2-5ed4459349e6 status: 204 No Content code: 204 duration: "" @@ -1895,19 +1895,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b3c54da6-3e63-49b8-b97a-2181658806c5 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4adbcdf2-53e7-4e3a-96fc-ba539a25fdab method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:29:41.596681Z","description":"","frontend_count":0,"id":"b3c54da6-3e63-49b8-b97a-2181658806c5","instances":[{"created_at":"2023-06-29T13:28:04.742333Z","id":"9e8380e7-1f02-4f24-a1df-d6688909baca","ip_address":"10.72.0.41","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:30:19.785549Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"b3c54da6-3e63-49b8-b97a-2181658806c5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:30:19.863683Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:10:22.726443Z","description":"","frontend_count":0,"id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","instances":[{"created_at":"2023-07-03T20:08:44.615061Z","id":"9b6d12c6-30d2-4185-a7fa-738d602825cd","ip_address":"10.73.136.5","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:11:00.972143Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"4adbcdf2-53e7-4e3a-96fc-ba539a25fdab","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:11:01.164229Z","zone":"fr-par-1"}' headers: Content-Length: - - "1094" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:20 GMT + - Mon, 03 Jul 2023 20:11:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1917,7 +1917,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 496cc4c7-6426-47c7-99df-c6c8628206d9 + - e82656b6-a717-4276-ba5e-a242b010f50a status: 200 OK code: 200 duration: "" @@ -1928,7 +1928,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b3c54da6-3e63-49b8-b97a-2181658806c5 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4adbcdf2-53e7-4e3a-96fc-ba539a25fdab method: GET response: body: '{"message":"lbs not Found"}' @@ -1940,7 +1940,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:50 GMT + - Mon, 03 Jul 2023 20:11:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1950,7 +1950,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3a279fe-c997-450c-bf56-bc023915027a + - e882d582-82a6-4b7d-adaa-ae14f6df7c3c status: 404 Not Found code: 404 duration: "" @@ -1961,7 +1961,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b3c54da6-3e63-49b8-b97a-2181658806c5 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/4adbcdf2-53e7-4e3a-96fc-ba539a25fdab method: GET response: body: '{"message":"lbs not Found"}' @@ -1973,7 +1973,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:50 GMT + - Mon, 03 Jul 2023 20:11:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1983,7 +1983,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ce416d3-9965-4f3c-8c90-0347909d0663 + - b9a678d0-c4db-4f27-ae58-338390d3066e status: 404 Not Found code: 404 duration: "" @@ -1994,19 +1994,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "285" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:50 GMT + - Mon, 03 Jul 2023 20:11:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2016,7 +2016,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a90c5ad-493d-4068-bdb0-b9acaf99ac23 + - c8f131dd-d6be-4609-928c-ded980bf78a3 status: 200 OK code: 200 duration: "" @@ -2027,7 +2027,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: DELETE response: body: "" @@ -2037,7 +2037,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:50 GMT + - Mon, 03 Jul 2023 20:11:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2047,7 +2047,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 571cdbac-ec5d-4c74-a112-4943932086a8 + - b913880d-1e1b-49bc-a7e7-5036ffbe4976 status: 204 No Content code: 204 duration: "" @@ -2058,7 +2058,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/ba428187-a76d-4aa7-9896-e5e286d35c6e + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/46cd9a3d-ed85-4b71-a6ca-e6b1e07dc073 method: GET response: body: '{"message":"frontend not Found"}' @@ -2070,7 +2070,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:30:50 GMT + - Mon, 03 Jul 2023 20:11:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2080,7 +2080,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 382d113b-ab13-4339-91d6-39ebe81de39a + - 12e8288b-914e-4013-9443-42c84a49a309 status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/lb-frontend-certificate.cassette.yaml b/scaleway/testdata/lb-frontend-certificate.cassette.yaml index 6f1999278e..7f2fcf91bd 100644 --- a/scaleway/testdata/lb-frontend-certificate.cassette.yaml +++ b/scaleway/testdata/lb-frontend-certificate.cassette.yaml @@ -13,16 +13,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips method: POST response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "285" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:58 GMT + - Mon, 03 Jul 2023 20:08:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -32,7 +32,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bea9dc67-12b7-45e0-bf98-9e51a0d804da + - ddf0ce2b-21aa-4ca2-aab9-e3839b8686c1 status: 200 OK code: 200 duration: "" @@ -43,19 +43,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "285" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:58 GMT + - Mon, 03 Jul 2023 20:08:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -65,12 +65,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de46d183-9352-433c-81ce-967589addb73 + - bde7af10-3038-4fe7-8020-cb6ad4732524 status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-lb","description":"","ip_id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","assign_flexible_ip":null,"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":"86df9ff8-7a77-492d-9b03-4f6205127499","assign_flexible_ip":null,"tags":null,"type":"lb-s","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' form: {} headers: Content-Type: @@ -81,16 +81,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs method: POST response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:27:59.031409820Z","description":"","frontend_count":0,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:27:59.031409820Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:08:39.996157653Z","description":"","frontend_count":0,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:08:39.996157653Z","zone":"fr-par-1"}' headers: Content-Length: - - "884" + - "862" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:59 GMT + - Mon, 03 Jul 2023 20:08:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -100,7 +100,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90d4bccf-11b1-481e-b0a3-eba816fe3925 + - 382ebe7d-b3b1-4cdc-8f5d-3477083b39d9 status: 200 OK code: 200 duration: "" @@ -111,19 +111,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/376dd211-d713-423c-af22-2e63c2ee3f0a + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9080895-94c6-441d-870e-0b15be7abea7 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":0,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[{"created_at":"2023-06-29T13:26:54.421546Z","id":"e2e8d306-d4a6-4af2-968a-a2fbbe426012","ip_address":"10.64.114.37","region":"fr-par","status":"unknown","updated_at":"2023-06-29T13:27:59.279173Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:27:59.291545Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":0,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:08:39.996158Z","zone":"fr-par-1"}' headers: Content-Length: - - "1097" + - "856" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:27:59 GMT + - Mon, 03 Jul 2023 20:08:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -133,7 +133,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f67d841-6ed4-4c62-ac99-cc1eeb072df8 + - e220ed11-a7aa-4ce3-9d08-07c8643a9372 status: 200 OK code: 200 duration: "" @@ -144,19 +144,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/376dd211-d713-423c-af22-2e63c2ee3f0a + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9080895-94c6-441d-870e-0b15be7abea7 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":0,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[{"created_at":"2023-06-29T13:26:54.421546Z","id":"e2e8d306-d4a6-4af2-968a-a2fbbe426012","ip_address":"10.64.114.37","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:28:00.170618Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:01.173706Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":0,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[{"created_at":"2023-07-03T11:08:14.603654Z","id":"0a550ba3-8a59-468a-9f48-8695534f66b4","ip_address":"10.71.42.33","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:08:41.087314Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:08:42.513392Z","zone":"fr-par-1"}' headers: Content-Length: - - "1092" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:28:29 GMT + - Mon, 03 Jul 2023 20:09:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -166,7 +166,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11493131-b1bb-4f0b-88be-a9cc5c72ce58 + - de0a70f9-759f-450e-b733-3e8e4830dada status: 200 OK code: 200 duration: "" @@ -177,19 +177,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/376dd211-d713-423c-af22-2e63c2ee3f0a + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9080895-94c6-441d-870e-0b15be7abea7 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":0,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[{"created_at":"2023-06-29T13:26:54.421546Z","id":"e2e8d306-d4a6-4af2-968a-a2fbbe426012","ip_address":"10.64.114.37","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:28:00.170618Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:01.173706Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":0,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[{"created_at":"2023-07-03T11:08:14.603654Z","id":"0a550ba3-8a59-468a-9f48-8695534f66b4","ip_address":"10.71.42.33","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:08:41.087314Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:08:42.513392Z","zone":"fr-par-1"}' headers: Content-Length: - - "1092" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:28:29 GMT + - Mon, 03 Jul 2023 20:09:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -199,7 +199,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 396aedd0-3fcc-423e-a620-969183d9a56c + - aeec9f9d-4510-4a65-8f76-cd1d567f1dd1 status: 200 OK code: 200 duration: "" @@ -210,19 +210,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/376dd211-d713-423c-af22-2e63c2ee3f0a/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9080895-94c6-441d-870e-0b15be7abea7/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:28:29 GMT + - Mon, 03 Jul 2023 20:09:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -232,7 +232,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f6e2e61-47c1-4d85-b74c-217cca427516 + - 8e1f4497-b345-42a7-a947-040c2b2a0004 status: 200 OK code: 200 duration: "" @@ -243,19 +243,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/376dd211-d713-423c-af22-2e63c2ee3f0a + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9080895-94c6-441d-870e-0b15be7abea7 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":0,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[{"created_at":"2023-06-29T13:26:54.421546Z","id":"e2e8d306-d4a6-4af2-968a-a2fbbe426012","ip_address":"10.64.114.37","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:28:00.170618Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:01.173706Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":0,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[{"created_at":"2023-07-03T11:08:14.603654Z","id":"0a550ba3-8a59-468a-9f48-8695534f66b4","ip_address":"10.71.42.33","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:08:41.087314Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:08:42.513392Z","zone":"fr-par-1"}' headers: Content-Length: - - "1092" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:28:29 GMT + - Mon, 03 Jul 2023 20:09:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -265,7 +265,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 739b17a8-79a3-426d-b0a9-4cdacf19beb5 + - 1a15b858-e0be-4995-8f58-ab3756554b66 status: 200 OK code: 200 duration: "" @@ -276,19 +276,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/376dd211-d713-423c-af22-2e63c2ee3f0a + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9080895-94c6-441d-870e-0b15be7abea7 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":0,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[{"created_at":"2023-06-29T13:26:54.421546Z","id":"e2e8d306-d4a6-4af2-968a-a2fbbe426012","ip_address":"10.64.114.37","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:28:00.170618Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:01.173706Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":0,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[{"created_at":"2023-07-03T11:08:14.603654Z","id":"0a550ba3-8a59-468a-9f48-8695534f66b4","ip_address":"10.71.42.33","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:08:41.087314Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:08:42.513392Z","zone":"fr-par-1"}' headers: Content-Length: - - "1092" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:28:29 GMT + - Mon, 03 Jul 2023 20:09:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -298,12 +298,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2870f944-f5a5-49cd-971e-acfca64d1c1e + - 68001c81-51f8-4891-9d77-58ba0aed84b5 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-bkd-gracious-curie","forward_protocol":"http","forward_port":443,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":443,"check_max_retries":2,"check_send_proxy":false,"transient_check_delay":null,"check_delay":60000,"check_timeout":30000},"server_ip":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":null,"max_retries":3,"max_connections":null,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' + body: '{"name":"tf-lb-bkd-cool-mclean","forward_protocol":"http","forward_port":443,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":443,"check_max_retries":2,"check_send_proxy":false,"transient_check_delay":"0.500000000s","check_delay":60000,"check_timeout":30000},"server_ip":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":null,"max_retries":3,"max_connections":null,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' form: {} headers: Content-Type: @@ -311,19 +311,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/376dd211-d713-423c-af22-2e63c2ee3f0a/backends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9080895-94c6-441d-870e-0b15be7abea7/backends method: POST response: - body: '{"created_at":"2023-06-29T13:28:29.735661031Z","failover_host":null,"forward_port":443,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":443,"tcp_config":{},"transient_check_delay":null},"id":"98c22726-8c24-4ce3-91b9-57e343ecc305","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":0,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[{"created_at":"2023-06-29T13:26:54.421546Z","id":"e2e8d306-d4a6-4af2-968a-a2fbbe426012","ip_address":"10.64.114.37","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:28:29.765930645Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:01.173706Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-gracious-curie","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:28:29.735661031Z"}' + body: '{"created_at":"2023-07-03T20:09:10.631153426Z","failover_host":null,"forward_port":443,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":443,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"55b8984f-c033-4493-a983-d6b7579da374","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":0,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[{"created_at":"2023-07-03T11:08:14.603654Z","id":"0a550ba3-8a59-468a-9f48-8695534f66b4","ip_address":"10.71.42.33","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:09:10.656173676Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:08:42.513392Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-mclean","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:09:10.631153426Z"}' headers: Content-Length: - - "1969" + - "1911" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:28:29 GMT + - Mon, 03 Jul 2023 20:09:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -333,12 +333,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c764a58-2497-4947-8bac-7bcc0622cf8f + - f5fdb157-ec1f-4b84-a41b-8e6975058027 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"test-cert-front-end","letsencrypt":{"common_name":"51-159-27-185.lb.fr-par.scw.cloud","subject_alternative_name":null}}' + body: '{"name":"test-cert-front-end","letsencrypt":{"common_name":"195-154-197-174.lb.fr-par.scw.cloud","subject_alternative_name":null}}' form: {} headers: Content-Type: @@ -346,19 +346,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/376dd211-d713-423c-af22-2e63c2ee3f0a/certificates + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9080895-94c6-441d-870e-0b15be7abea7/certificates method: POST response: - body: '{"common_name":"51-159-27-185.lb.fr-par.scw.cloud","created_at":"2023-06-29T13:28:29.764328204Z","fingerprint":"","id":"84646475-9595-440e-8abe-e6ca38e1d9e9","lb":{"backend_count":1,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":0,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[{"created_at":"2023-06-29T13:26:54.421546Z","id":"e2e8d306-d4a6-4af2-968a-a2fbbe426012","ip_address":"10.64.114.37","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:28:00.170618Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:29.779027399Z","zone":"fr-par-1"},"name":"test-cert-front-end","not_valid_after":"0001-01-01T00:00:00Z","not_valid_before":"0001-01-01T00:00:00Z","status":"pending","status_details":null,"subject_alternative_name":[],"type":"letsencryt","updated_at":"2023-06-29T13:28:29.764328204Z"}' + body: '{"common_name":"195-154-197-174.lb.fr-par.scw.cloud","created_at":"2023-07-03T20:09:10.660909186Z","fingerprint":"","id":"cfb313b0-af39-4870-952a-c81ac9d5d911","lb":{"backend_count":1,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":0,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[{"created_at":"2023-07-03T11:08:14.603654Z","id":"0a550ba3-8a59-468a-9f48-8695534f66b4","ip_address":"10.71.42.33","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:08:41.087314Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:09:10.675943281Z","zone":"fr-par-1"},"name":"test-cert-front-end","not_valid_after":"0001-01-01T00:00:00Z","not_valid_before":"0001-01-01T00:00:00Z","status":"pending","status_details":null,"subject_alternative_name":[],"type":"letsencryt","updated_at":"2023-07-03T20:09:10.660909186Z"}' headers: Content-Length: - - "1520" + - "1481" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:28:29 GMT + - Mon, 03 Jul 2023 20:09:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -368,7 +368,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a005a79-d405-4979-bf13-58598d80b395 + - d77b10bb-5b7d-4a25-b540-8bcc3e53614e status: 200 OK code: 200 duration: "" @@ -379,19 +379,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/84646475-9595-440e-8abe-e6ca38e1d9e9 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9080895-94c6-441d-870e-0b15be7abea7 method: GET response: - body: '{"common_name":"51-159-27-185.lb.fr-par.scw.cloud","created_at":"2023-06-29T13:28:29.764328Z","fingerprint":"","id":"84646475-9595-440e-8abe-e6ca38e1d9e9","lb":{"backend_count":1,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":0,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:29.779027Z","zone":"fr-par-1"},"name":"test-cert-front-end","not_valid_after":"0001-01-01T00:00:00Z","not_valid_before":"0001-01-01T00:00:00Z","status":"pending","status_details":null,"subject_alternative_name":[],"type":"letsencryt","updated_at":"2023-06-29T13:28:29.764328Z"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":0,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[{"created_at":"2023-07-03T11:08:14.603654Z","id":"0a550ba3-8a59-468a-9f48-8695534f66b4","ip_address":"10.71.42.33","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:09:10.656174Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:09:10.675943Z","zone":"fr-par-1"}' headers: Content-Length: - - "1293" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:28:30 GMT + - Mon, 03 Jul 2023 20:09:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -401,7 +401,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48ffd755-35f0-4056-b586-5674ebf798ea + - e2da4b9c-8c33-42b2-b2c3-d53f67f894c4 status: 200 OK code: 200 duration: "" @@ -412,19 +412,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/376dd211-d713-423c-af22-2e63c2ee3f0a + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/cfb313b0-af39-4870-952a-c81ac9d5d911 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":0,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[{"created_at":"2023-06-29T13:26:54.421546Z","id":"e2e8d306-d4a6-4af2-968a-a2fbbe426012","ip_address":"10.64.114.37","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:28:29.765931Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:29.779027Z","zone":"fr-par-1"}' + body: '{"common_name":"195-154-197-174.lb.fr-par.scw.cloud","created_at":"2023-07-03T20:09:10.660909Z","fingerprint":"","id":"cfb313b0-af39-4870-952a-c81ac9d5d911","lb":{"backend_count":1,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":0,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:09:10.675943Z","zone":"fr-par-1"},"name":"test-cert-front-end","not_valid_after":"0001-01-01T00:00:00Z","not_valid_before":"0001-01-01T00:00:00Z","status":"pending","status_details":null,"subject_alternative_name":[],"type":"letsencryt","updated_at":"2023-07-03T20:09:10.660909Z"}' headers: Content-Length: - - "1094" + - "1261" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:28:30 GMT + - Mon, 03 Jul 2023 20:09:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -434,7 +434,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 392e60ba-04bf-4999-82b5-05e6afba3b2b + - e7f67596-bc33-4893-97eb-3850d7d3a6ab status: 200 OK code: 200 duration: "" @@ -445,19 +445,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/98c22726-8c24-4ce3-91b9-57e343ecc305 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/55b8984f-c033-4493-a983-d6b7579da374 method: GET response: - body: '{"created_at":"2023-06-29T13:28:29.735661Z","failover_host":null,"forward_port":443,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":443,"tcp_config":{},"transient_check_delay":null},"id":"98c22726-8c24-4ce3-91b9-57e343ecc305","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":0,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[{"created_at":"2023-06-29T13:26:54.421546Z","id":"e2e8d306-d4a6-4af2-968a-a2fbbe426012","ip_address":"10.64.114.37","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:28:30.042338Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:29.779027Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-gracious-curie","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:28:29.735661Z"}' + body: '{"created_at":"2023-07-03T20:09:10.631153Z","failover_host":null,"forward_port":443,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":443,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"55b8984f-c033-4493-a983-d6b7579da374","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":0,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[{"created_at":"2023-07-03T11:08:14.603654Z","id":"0a550ba3-8a59-468a-9f48-8695534f66b4","ip_address":"10.71.42.33","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:09:10.656174Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:09:10.675943Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-mclean","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:09:10.631153Z"}' headers: Content-Length: - - "1958" + - "1902" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:28:30 GMT + - Mon, 03 Jul 2023 20:09:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -467,7 +467,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1614598b-1c77-4ecc-a23a-dbbc07c6e4b5 + - 67ffe359-f703-4469-83de-1975abe16f7e status: 200 OK code: 200 duration: "" @@ -478,19 +478,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/376dd211-d713-423c-af22-2e63c2ee3f0a + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9080895-94c6-441d-870e-0b15be7abea7 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":0,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[{"created_at":"2023-06-29T13:26:54.421546Z","id":"e2e8d306-d4a6-4af2-968a-a2fbbe426012","ip_address":"10.64.114.37","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:28:30.042338Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:29.779027Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":0,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[{"created_at":"2023-07-03T11:08:14.603654Z","id":"0a550ba3-8a59-468a-9f48-8695534f66b4","ip_address":"10.71.42.33","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:09:10.957471Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:09:10.675943Z","zone":"fr-par-1"}' headers: Content-Length: - - "1092" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:28:30 GMT + - Mon, 03 Jul 2023 20:09:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -500,7 +500,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b4e6410-2dab-4f69-98f9-08ee1909a251 + - a21f7cd5-6beb-4a38-892f-656da1261f63 status: 200 OK code: 200 duration: "" @@ -511,19 +511,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/84646475-9595-440e-8abe-e6ca38e1d9e9 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/cfb313b0-af39-4870-952a-c81ac9d5d911 method: GET response: - body: '{"common_name":"51-159-27-185.lb.fr-par.scw.cloud","created_at":"2023-06-29T13:28:29.764328Z","fingerprint":"1013fd13e4f1aac7405246c181d18c7c4013dbc2","id":"84646475-9595-440e-8abe-e6ca38e1d9e9","lb":{"backend_count":1,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":0,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:29.779027Z","zone":"fr-par-1"},"name":"test-cert-front-end","not_valid_after":"2023-09-27T12:28:34Z","not_valid_before":"2023-06-29T12:28:35Z","status":"ready","status_details":null,"subject_alternative_name":[],"type":"letsencryt","updated_at":"2023-06-29T13:28:36.908956Z"}' + body: '{"common_name":"195-154-197-174.lb.fr-par.scw.cloud","created_at":"2023-07-03T20:09:10.660909Z","fingerprint":"216495439a5dc06a4890d7d5eefb5cccaf89f6ef","id":"cfb313b0-af39-4870-952a-c81ac9d5d911","lb":{"backend_count":1,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":0,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:09:10.675943Z","zone":"fr-par-1"},"name":"test-cert-front-end","not_valid_after":"2023-10-01T19:09:13Z","not_valid_before":"2023-07-03T19:09:14Z","status":"ready","status_details":null,"subject_alternative_name":[],"type":"letsencryt","updated_at":"2023-07-03T20:09:15.005865Z"}' headers: Content-Length: - - "1331" + - "1299" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:00 GMT + - Mon, 03 Jul 2023 20:09:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -533,7 +533,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55aca8ce-5730-4564-bb20-14346708e692 + - ea1fec25-40a8-47e1-b67d-43b3cd7676a2 status: 200 OK code: 200 duration: "" @@ -544,19 +544,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/84646475-9595-440e-8abe-e6ca38e1d9e9 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/cfb313b0-af39-4870-952a-c81ac9d5d911 method: GET response: - body: '{"common_name":"51-159-27-185.lb.fr-par.scw.cloud","created_at":"2023-06-29T13:28:29.764328Z","fingerprint":"1013fd13e4f1aac7405246c181d18c7c4013dbc2","id":"84646475-9595-440e-8abe-e6ca38e1d9e9","lb":{"backend_count":1,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":0,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:29.779027Z","zone":"fr-par-1"},"name":"test-cert-front-end","not_valid_after":"2023-09-27T12:28:34Z","not_valid_before":"2023-06-29T12:28:35Z","status":"ready","status_details":null,"subject_alternative_name":[],"type":"letsencryt","updated_at":"2023-06-29T13:28:36.908956Z"}' + body: '{"common_name":"195-154-197-174.lb.fr-par.scw.cloud","created_at":"2023-07-03T20:09:10.660909Z","fingerprint":"216495439a5dc06a4890d7d5eefb5cccaf89f6ef","id":"cfb313b0-af39-4870-952a-c81ac9d5d911","lb":{"backend_count":1,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":0,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:09:10.675943Z","zone":"fr-par-1"},"name":"test-cert-front-end","not_valid_after":"2023-10-01T19:09:13Z","not_valid_before":"2023-07-03T19:09:14Z","status":"ready","status_details":null,"subject_alternative_name":[],"type":"letsencryt","updated_at":"2023-07-03T20:09:15.005865Z"}' headers: Content-Length: - - "1331" + - "1299" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:00 GMT + - Mon, 03 Jul 2023 20:09:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -566,7 +566,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6e08137-dcf9-4740-87ea-4c7c669f8364 + - b6226c3c-f5a1-431e-bcc4-57e969225c6c status: 200 OK code: 200 duration: "" @@ -577,19 +577,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/84646475-9595-440e-8abe-e6ca38e1d9e9 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/cfb313b0-af39-4870-952a-c81ac9d5d911 method: GET response: - body: '{"common_name":"51-159-27-185.lb.fr-par.scw.cloud","created_at":"2023-06-29T13:28:29.764328Z","fingerprint":"1013fd13e4f1aac7405246c181d18c7c4013dbc2","id":"84646475-9595-440e-8abe-e6ca38e1d9e9","lb":{"backend_count":1,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":0,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:29.779027Z","zone":"fr-par-1"},"name":"test-cert-front-end","not_valid_after":"2023-09-27T12:28:34Z","not_valid_before":"2023-06-29T12:28:35Z","status":"ready","status_details":null,"subject_alternative_name":[],"type":"letsencryt","updated_at":"2023-06-29T13:28:36.908956Z"}' + body: '{"common_name":"195-154-197-174.lb.fr-par.scw.cloud","created_at":"2023-07-03T20:09:10.660909Z","fingerprint":"216495439a5dc06a4890d7d5eefb5cccaf89f6ef","id":"cfb313b0-af39-4870-952a-c81ac9d5d911","lb":{"backend_count":1,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":0,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:09:10.675943Z","zone":"fr-par-1"},"name":"test-cert-front-end","not_valid_after":"2023-10-01T19:09:13Z","not_valid_before":"2023-07-03T19:09:14Z","status":"ready","status_details":null,"subject_alternative_name":[],"type":"letsencryt","updated_at":"2023-07-03T20:09:15.005865Z"}' headers: Content-Length: - - "1331" + - "1299" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:00 GMT + - Mon, 03 Jul 2023 20:09:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -599,7 +599,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a256c9f-e4b2-4676-ae0b-cf267bd206bd + - 27e7f91d-e52b-4777-bffc-d346daed1ec8 status: 200 OK code: 200 duration: "" @@ -610,19 +610,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/376dd211-d713-423c-af22-2e63c2ee3f0a + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9080895-94c6-441d-870e-0b15be7abea7 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":0,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[{"created_at":"2023-06-29T13:26:54.421546Z","id":"e2e8d306-d4a6-4af2-968a-a2fbbe426012","ip_address":"10.64.114.37","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:28:30.042338Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:29.779027Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":0,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[{"created_at":"2023-07-03T11:08:14.603654Z","id":"0a550ba3-8a59-468a-9f48-8695534f66b4","ip_address":"10.71.42.33","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:09:10.957471Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:09:10.675943Z","zone":"fr-par-1"}' headers: Content-Length: - - "1092" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:00 GMT + - Mon, 03 Jul 2023 20:09:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -632,12 +632,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e498cba-67b0-4eb3-9b3c-23e2dc15e7ae + - 02bcd494-6e4e-4668-8fc5-2cfddb8b9403 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-frt-crazy-golick","inbound_port":443,"backend_id":"98c22726-8c24-4ce3-91b9-57e343ecc305","certificate_ids":["84646475-9595-440e-8abe-e6ca38e1d9e9"],"enable_http3":false,"timeout_client":null}' + body: '{"name":"tf-lb-frt-friendly-boyd","inbound_port":443,"backend_id":"55b8984f-c033-4493-a983-d6b7579da374","certificate_ids":["cfb313b0-af39-4870-952a-c81ac9d5d911"],"enable_http3":false,"timeout_client":null}' form: {} headers: Content-Type: @@ -645,17 +645,17 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/376dd211-d713-423c-af22-2e63c2ee3f0a/frontends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9080895-94c6-441d-870e-0b15be7abea7/frontends method: POST response: - body: '{"backend":{"created_at":"2023-06-29T13:28:29.735661Z","failover_host":null,"forward_port":443,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":443,"tcp_config":{},"transient_check_delay":null},"id":"98c22726-8c24-4ce3-91b9-57e343ecc305","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":1,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:29.779027Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-gracious-curie","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:28:29.735661Z"},"certificate":{"common_name":"51-159-27-185.lb.fr-par.scw.cloud","created_at":"2023-06-29T13:28:29.764328Z","fingerprint":"1013fd13e4f1aac7405246c181d18c7c4013dbc2","id":"84646475-9595-440e-8abe-e6ca38e1d9e9","lb":{"backend_count":1,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":1,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:29.779027Z","zone":"fr-par-1"},"name":"test-cert-front-end","not_valid_after":"2023-09-27T12:28:34Z","not_valid_before":"2023-06-29T12:28:35Z","status":"ready","status_details":null,"subject_alternative_name":[],"type":"letsencryt","updated_at":"2023-06-29T13:29:00.560329015Z"},"certificate_ids":["84646475-9595-440e-8abe-e6ca38e1d9e9"],"created_at":"2023-06-29T13:29:00.555588Z","enable_http3":false,"id":"ac485df2-9a94-4781-aca0-b0fff592c0bb","inbound_port":443,"lb":{"backend_count":1,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":1,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[{"created_at":"2023-06-29T13:26:54.421546Z","id":"e2e8d306-d4a6-4af2-968a-a2fbbe426012","ip_address":"10.64.114.37","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:29:00.627195830Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:29.779027Z","zone":"fr-par-1"},"name":"tf-lb-frt-crazy-golick","timeout_client":null,"updated_at":"2023-06-29T13:29:00.555588Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:09:10.631153Z","failover_host":null,"forward_port":443,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":443,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"55b8984f-c033-4493-a983-d6b7579da374","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":1,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:09:10.675943Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-mclean","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:09:10.631153Z"},"certificate":{"common_name":"195-154-197-174.lb.fr-par.scw.cloud","created_at":"2023-07-03T20:09:10.660909Z","fingerprint":"216495439a5dc06a4890d7d5eefb5cccaf89f6ef","id":"cfb313b0-af39-4870-952a-c81ac9d5d911","lb":{"backend_count":1,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":1,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:09:10.675943Z","zone":"fr-par-1"},"name":"test-cert-front-end","not_valid_after":"2023-10-01T19:09:13Z","not_valid_before":"2023-07-03T19:09:14Z","status":"ready","status_details":null,"subject_alternative_name":[],"type":"letsencryt","updated_at":"2023-07-03T20:09:41.431641311Z"},"certificate_ids":["cfb313b0-af39-4870-952a-c81ac9d5d911"],"created_at":"2023-07-03T20:09:41.428603Z","enable_http3":false,"id":"0fdc46fd-9d59-4937-aa06-ecff05091b4b","inbound_port":443,"lb":{"backend_count":1,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":1,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[{"created_at":"2023-07-03T11:08:14.603654Z","id":"0a550ba3-8a59-468a-9f48-8695534f66b4","ip_address":"10.71.42.33","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:09:41.487932555Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:09:10.675943Z","zone":"fr-par-1"},"name":"tf-lb-frt-friendly-boyd","timeout_client":null,"updated_at":"2023-07-03T20:09:41.428603Z"}' headers: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:00 GMT + - Mon, 03 Jul 2023 20:09:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -665,7 +665,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 234b49bd-d83d-4843-b2c8-4846ccbeefa1 + - def5cf03-0f33-4694-85f4-f81e08cde75d status: 200 OK code: 200 duration: "" @@ -676,19 +676,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/376dd211-d713-423c-af22-2e63c2ee3f0a + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9080895-94c6-441d-870e-0b15be7abea7 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":1,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[{"created_at":"2023-06-29T13:26:54.421546Z","id":"e2e8d306-d4a6-4af2-968a-a2fbbe426012","ip_address":"10.64.114.37","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:29:00.627196Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:29.779027Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":1,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[{"created_at":"2023-07-03T11:08:14.603654Z","id":"0a550ba3-8a59-468a-9f48-8695534f66b4","ip_address":"10.71.42.33","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:09:41.487933Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:09:10.675943Z","zone":"fr-par-1"}' headers: Content-Length: - - "1094" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:00 GMT + - Mon, 03 Jul 2023 20:09:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -698,12 +698,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 280ac8a9-6424-4c6c-9066-68980a48574c + - 2d6fcf38-e6cb-4a84-a66f-461b3274e3f8 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-frt-angry-varahamihira","inbound_port":443,"backend_id":"98c22726-8c24-4ce3-91b9-57e343ecc305","certificate_ids":["84646475-9595-440e-8abe-e6ca38e1d9e9"],"enable_http3":false,"timeout_client":null}' + body: '{"name":"tf-lb-frt-youthful-lamport","inbound_port":443,"backend_id":"55b8984f-c033-4493-a983-d6b7579da374","certificate_ids":["cfb313b0-af39-4870-952a-c81ac9d5d911"],"enable_http3":false,"timeout_client":null}' form: {} headers: Content-Type: @@ -711,17 +711,17 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/ac485df2-9a94-4781-aca0-b0fff592c0bb + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/0fdc46fd-9d59-4937-aa06-ecff05091b4b method: PUT response: - body: '{"backend":{"created_at":"2023-06-29T13:28:29.735661Z","failover_host":null,"forward_port":443,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":443,"tcp_config":{},"transient_check_delay":null},"id":"98c22726-8c24-4ce3-91b9-57e343ecc305","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":1,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:29.779027Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-gracious-curie","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:28:29.735661Z"},"certificate":{"common_name":"51-159-27-185.lb.fr-par.scw.cloud","created_at":"2023-06-29T13:28:29.764328Z","fingerprint":"1013fd13e4f1aac7405246c181d18c7c4013dbc2","id":"84646475-9595-440e-8abe-e6ca38e1d9e9","lb":{"backend_count":1,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":1,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:29.779027Z","zone":"fr-par-1"},"name":"test-cert-front-end","not_valid_after":"2023-09-27T12:28:34Z","not_valid_before":"2023-06-29T12:28:35Z","status":"ready","status_details":null,"subject_alternative_name":[],"type":"letsencryt","updated_at":"2023-06-29T13:29:01.041708999Z"},"certificate_ids":["84646475-9595-440e-8abe-e6ca38e1d9e9"],"created_at":"2023-06-29T13:29:00.555588Z","enable_http3":false,"id":"ac485df2-9a94-4781-aca0-b0fff592c0bb","inbound_port":443,"lb":{"backend_count":1,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":1,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[{"created_at":"2023-06-29T13:26:54.421546Z","id":"e2e8d306-d4a6-4af2-968a-a2fbbe426012","ip_address":"10.64.114.37","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:29:01.067425294Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:29.779027Z","zone":"fr-par-1"},"name":"tf-lb-frt-angry-varahamihira","timeout_client":null,"updated_at":"2023-06-29T13:29:01.038530016Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:09:10.631153Z","failover_host":null,"forward_port":443,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":443,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"55b8984f-c033-4493-a983-d6b7579da374","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":1,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:09:10.675943Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-mclean","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:09:10.631153Z"},"certificate":{"common_name":"195-154-197-174.lb.fr-par.scw.cloud","created_at":"2023-07-03T20:09:10.660909Z","fingerprint":"216495439a5dc06a4890d7d5eefb5cccaf89f6ef","id":"cfb313b0-af39-4870-952a-c81ac9d5d911","lb":{"backend_count":1,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":1,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:09:10.675943Z","zone":"fr-par-1"},"name":"test-cert-front-end","not_valid_after":"2023-10-01T19:09:13Z","not_valid_before":"2023-07-03T19:09:14Z","status":"ready","status_details":null,"subject_alternative_name":[],"type":"letsencryt","updated_at":"2023-07-03T20:09:41.888149365Z"},"certificate_ids":["cfb313b0-af39-4870-952a-c81ac9d5d911"],"created_at":"2023-07-03T20:09:41.428603Z","enable_http3":false,"id":"0fdc46fd-9d59-4937-aa06-ecff05091b4b","inbound_port":443,"lb":{"backend_count":1,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":1,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[{"created_at":"2023-07-03T11:08:14.603654Z","id":"0a550ba3-8a59-468a-9f48-8695534f66b4","ip_address":"10.71.42.33","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:09:41.924058402Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:09:10.675943Z","zone":"fr-par-1"},"name":"tf-lb-frt-youthful-lamport","timeout_client":null,"updated_at":"2023-07-03T20:09:41.885720192Z"}' headers: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:01 GMT + - Mon, 03 Jul 2023 20:09:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -731,7 +731,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48f1aecc-77d0-4851-9058-a32a26ccc133 + - fe9ef220-e0b3-40fa-8845-181bd086178e status: 200 OK code: 200 duration: "" @@ -742,19 +742,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/ac485df2-9a94-4781-aca0-b0fff592c0bb/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/0fdc46fd-9d59-4937-aa06-ecff05091b4b/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:01 GMT + - Mon, 03 Jul 2023 20:09:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -764,7 +764,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77532a6e-e18a-4cb5-96cf-7814cb198783 + - 1ac47bbe-cdc7-40fe-a2b6-58f86d1edb6f status: 200 OK code: 200 duration: "" @@ -775,19 +775,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/ac485df2-9a94-4781-aca0-b0fff592c0bb + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/0fdc46fd-9d59-4937-aa06-ecff05091b4b method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:28:29.735661Z","failover_host":null,"forward_port":443,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":443,"tcp_config":{},"transient_check_delay":null},"id":"98c22726-8c24-4ce3-91b9-57e343ecc305","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":1,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:29.779027Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-gracious-curie","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:28:29.735661Z"},"certificate":{"common_name":"51-159-27-185.lb.fr-par.scw.cloud","created_at":"2023-06-29T13:28:29.764328Z","fingerprint":"1013fd13e4f1aac7405246c181d18c7c4013dbc2","id":"84646475-9595-440e-8abe-e6ca38e1d9e9","lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"test-cert-front-end","not_valid_after":"2023-09-27T12:28:34Z","not_valid_before":"2023-06-29T12:28:35Z","status":"ready","status_details":null,"subject_alternative_name":[],"type":"letsencryt","updated_at":"2023-06-29T13:29:01.041709Z"},"certificate_ids":["84646475-9595-440e-8abe-e6ca38e1d9e9"],"created_at":"2023-06-29T13:29:00.555588Z","enable_http3":false,"id":"ac485df2-9a94-4781-aca0-b0fff592c0bb","inbound_port":443,"lb":{"backend_count":1,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":1,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:29.779027Z","zone":"fr-par-1"},"name":"tf-lb-frt-angry-varahamihira","timeout_client":null,"updated_at":"2023-06-29T13:29:01.038530Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:09:10.631153Z","failover_host":null,"forward_port":443,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":443,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"55b8984f-c033-4493-a983-d6b7579da374","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":1,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:09:10.675943Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-mclean","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:09:10.631153Z"},"certificate":{"common_name":"195-154-197-174.lb.fr-par.scw.cloud","created_at":"2023-07-03T20:09:10.660909Z","fingerprint":"216495439a5dc06a4890d7d5eefb5cccaf89f6ef","id":"cfb313b0-af39-4870-952a-c81ac9d5d911","lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"test-cert-front-end","not_valid_after":"2023-10-01T19:09:13Z","not_valid_before":"2023-07-03T19:09:14Z","status":"ready","status_details":null,"subject_alternative_name":[],"type":"letsencryt","updated_at":"2023-07-03T20:09:41.888149Z"},"certificate_ids":["cfb313b0-af39-4870-952a-c81ac9d5d911"],"created_at":"2023-07-03T20:09:41.428603Z","enable_http3":false,"id":"0fdc46fd-9d59-4937-aa06-ecff05091b4b","inbound_port":443,"lb":{"backend_count":1,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":1,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:09:10.675943Z","zone":"fr-par-1"},"name":"tf-lb-frt-youthful-lamport","timeout_client":null,"updated_at":"2023-07-03T20:09:41.885720Z"}' headers: Content-Length: - - "3824" + - "3710" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:01 GMT + - Mon, 03 Jul 2023 20:09:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -797,7 +797,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e6cd1c1-9e5c-4070-a538-26c4c08745e9 + - 0fe74b94-abd5-4b71-94db-04f744c0c163 status: 200 OK code: 200 duration: "" @@ -808,19 +808,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/ac485df2-9a94-4781-aca0-b0fff592c0bb/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/0fdc46fd-9d59-4937-aa06-ecff05091b4b/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:01 GMT + - Mon, 03 Jul 2023 20:09:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -830,7 +830,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4626c59-8b07-4727-9075-390c7adfd9e6 + - d22a63dd-c0cf-49e3-8c1b-b766a8b5723d status: 200 OK code: 200 duration: "" @@ -841,19 +841,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/ac485df2-9a94-4781-aca0-b0fff592c0bb + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/0fdc46fd-9d59-4937-aa06-ecff05091b4b method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:28:29.735661Z","failover_host":null,"forward_port":443,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":443,"tcp_config":{},"transient_check_delay":null},"id":"98c22726-8c24-4ce3-91b9-57e343ecc305","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":1,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:29.779027Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-gracious-curie","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:28:29.735661Z"},"certificate":{"common_name":"51-159-27-185.lb.fr-par.scw.cloud","created_at":"2023-06-29T13:28:29.764328Z","fingerprint":"1013fd13e4f1aac7405246c181d18c7c4013dbc2","id":"84646475-9595-440e-8abe-e6ca38e1d9e9","lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"test-cert-front-end","not_valid_after":"2023-09-27T12:28:34Z","not_valid_before":"2023-06-29T12:28:35Z","status":"ready","status_details":null,"subject_alternative_name":[],"type":"letsencryt","updated_at":"2023-06-29T13:29:01.041709Z"},"certificate_ids":["84646475-9595-440e-8abe-e6ca38e1d9e9"],"created_at":"2023-06-29T13:29:00.555588Z","enable_http3":false,"id":"ac485df2-9a94-4781-aca0-b0fff592c0bb","inbound_port":443,"lb":{"backend_count":1,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":1,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:29.779027Z","zone":"fr-par-1"},"name":"tf-lb-frt-angry-varahamihira","timeout_client":null,"updated_at":"2023-06-29T13:29:01.038530Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:09:10.631153Z","failover_host":null,"forward_port":443,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":443,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"55b8984f-c033-4493-a983-d6b7579da374","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":1,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:09:10.675943Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-mclean","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:09:10.631153Z"},"certificate":{"common_name":"195-154-197-174.lb.fr-par.scw.cloud","created_at":"2023-07-03T20:09:10.660909Z","fingerprint":"216495439a5dc06a4890d7d5eefb5cccaf89f6ef","id":"cfb313b0-af39-4870-952a-c81ac9d5d911","lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"test-cert-front-end","not_valid_after":"2023-10-01T19:09:13Z","not_valid_before":"2023-07-03T19:09:14Z","status":"ready","status_details":null,"subject_alternative_name":[],"type":"letsencryt","updated_at":"2023-07-03T20:09:41.888149Z"},"certificate_ids":["cfb313b0-af39-4870-952a-c81ac9d5d911"],"created_at":"2023-07-03T20:09:41.428603Z","enable_http3":false,"id":"0fdc46fd-9d59-4937-aa06-ecff05091b4b","inbound_port":443,"lb":{"backend_count":1,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":1,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:09:10.675943Z","zone":"fr-par-1"},"name":"tf-lb-frt-youthful-lamport","timeout_client":null,"updated_at":"2023-07-03T20:09:41.885720Z"}' headers: Content-Length: - - "3824" + - "3710" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:01 GMT + - Mon, 03 Jul 2023 20:09:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -863,7 +863,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 51514276-280c-491c-a8c7-7e03f9f76fe7 + - 87bc4fb4-0df0-4686-b5ae-634f3497db0d status: 200 OK code: 200 duration: "" @@ -874,19 +874,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/ac485df2-9a94-4781-aca0-b0fff592c0bb + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/0fdc46fd-9d59-4937-aa06-ecff05091b4b method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:28:29.735661Z","failover_host":null,"forward_port":443,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":443,"tcp_config":{},"transient_check_delay":null},"id":"98c22726-8c24-4ce3-91b9-57e343ecc305","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":1,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:29.779027Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-gracious-curie","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:28:29.735661Z"},"certificate":{"common_name":"51-159-27-185.lb.fr-par.scw.cloud","created_at":"2023-06-29T13:28:29.764328Z","fingerprint":"1013fd13e4f1aac7405246c181d18c7c4013dbc2","id":"84646475-9595-440e-8abe-e6ca38e1d9e9","lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"test-cert-front-end","not_valid_after":"2023-09-27T12:28:34Z","not_valid_before":"2023-06-29T12:28:35Z","status":"ready","status_details":null,"subject_alternative_name":[],"type":"letsencryt","updated_at":"2023-06-29T13:29:01.041709Z"},"certificate_ids":["84646475-9595-440e-8abe-e6ca38e1d9e9"],"created_at":"2023-06-29T13:29:00.555588Z","enable_http3":false,"id":"ac485df2-9a94-4781-aca0-b0fff592c0bb","inbound_port":443,"lb":{"backend_count":1,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":1,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:29.779027Z","zone":"fr-par-1"},"name":"tf-lb-frt-angry-varahamihira","timeout_client":null,"updated_at":"2023-06-29T13:29:01.038530Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:09:10.631153Z","failover_host":null,"forward_port":443,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":443,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"55b8984f-c033-4493-a983-d6b7579da374","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":1,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:09:10.675943Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-mclean","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:09:10.631153Z"},"certificate":{"common_name":"195-154-197-174.lb.fr-par.scw.cloud","created_at":"2023-07-03T20:09:10.660909Z","fingerprint":"216495439a5dc06a4890d7d5eefb5cccaf89f6ef","id":"cfb313b0-af39-4870-952a-c81ac9d5d911","lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"test-cert-front-end","not_valid_after":"2023-10-01T19:09:13Z","not_valid_before":"2023-07-03T19:09:14Z","status":"ready","status_details":null,"subject_alternative_name":[],"type":"letsencryt","updated_at":"2023-07-03T20:09:41.888149Z"},"certificate_ids":["cfb313b0-af39-4870-952a-c81ac9d5d911"],"created_at":"2023-07-03T20:09:41.428603Z","enable_http3":false,"id":"0fdc46fd-9d59-4937-aa06-ecff05091b4b","inbound_port":443,"lb":{"backend_count":1,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":1,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:09:10.675943Z","zone":"fr-par-1"},"name":"tf-lb-frt-youthful-lamport","timeout_client":null,"updated_at":"2023-07-03T20:09:41.885720Z"}' headers: Content-Length: - - "3824" + - "3710" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:01 GMT + - Mon, 03 Jul 2023 20:09:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -896,7 +896,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77679047-2509-4cd0-90e1-43dd3846d517 + - a1477a83-6e61-4d0b-969e-1edd3a2888c2 status: 200 OK code: 200 duration: "" @@ -907,19 +907,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "319" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:02 GMT + - Mon, 03 Jul 2023 20:09:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -929,7 +929,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7779eb7f-b3ed-4f7b-ab8e-b5c775ad9273 + - 63da619f-f2fa-4d35-a390-fcc477e282b3 status: 200 OK code: 200 duration: "" @@ -940,19 +940,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/376dd211-d713-423c-af22-2e63c2ee3f0a + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9080895-94c6-441d-870e-0b15be7abea7 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":1,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[{"created_at":"2023-06-29T13:26:54.421546Z","id":"e2e8d306-d4a6-4af2-968a-a2fbbe426012","ip_address":"10.64.114.37","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:29:01.354838Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:29.779027Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":1,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[{"created_at":"2023-07-03T11:08:14.603654Z","id":"0a550ba3-8a59-468a-9f48-8695534f66b4","ip_address":"10.71.42.33","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:09:42.215475Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:09:10.675943Z","zone":"fr-par-1"}' headers: Content-Length: - - "1092" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:02 GMT + - Mon, 03 Jul 2023 20:09:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -962,7 +962,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5361a48c-0f73-4397-90fb-a7ed4d072122 + - e359c953-ffe1-41e0-86b1-176e5e91e706 status: 200 OK code: 200 duration: "" @@ -973,19 +973,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/376dd211-d713-423c-af22-2e63c2ee3f0a + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9080895-94c6-441d-870e-0b15be7abea7 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":1,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[{"created_at":"2023-06-29T13:26:54.421546Z","id":"e2e8d306-d4a6-4af2-968a-a2fbbe426012","ip_address":"10.64.114.37","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:29:01.354838Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:29.779027Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":1,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[{"created_at":"2023-07-03T11:08:14.603654Z","id":"0a550ba3-8a59-468a-9f48-8695534f66b4","ip_address":"10.71.42.33","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:09:42.215475Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:09:10.675943Z","zone":"fr-par-1"}' headers: Content-Length: - - "1092" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:02 GMT + - Mon, 03 Jul 2023 20:09:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -995,7 +995,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 515f0720-2ea8-464b-a111-bede3c0d3b20 + - cb10aaed-42cc-4c85-9c27-dc1f021078e5 status: 200 OK code: 200 duration: "" @@ -1006,19 +1006,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/376dd211-d713-423c-af22-2e63c2ee3f0a/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9080895-94c6-441d-870e-0b15be7abea7/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:02 GMT + - Mon, 03 Jul 2023 20:09:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1028,7 +1028,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d145a176-aa11-4a58-b828-9c92e76b37af + - 5e91685d-8002-4ced-8cbf-78ae437426c2 status: 200 OK code: 200 duration: "" @@ -1039,19 +1039,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/84646475-9595-440e-8abe-e6ca38e1d9e9 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/cfb313b0-af39-4870-952a-c81ac9d5d911 method: GET response: - body: '{"common_name":"51-159-27-185.lb.fr-par.scw.cloud","created_at":"2023-06-29T13:28:29.764328Z","fingerprint":"1013fd13e4f1aac7405246c181d18c7c4013dbc2","id":"84646475-9595-440e-8abe-e6ca38e1d9e9","lb":{"backend_count":1,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":1,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:29.779027Z","zone":"fr-par-1"},"name":"test-cert-front-end","not_valid_after":"2023-09-27T12:28:34Z","not_valid_before":"2023-06-29T12:28:35Z","status":"ready","status_details":null,"subject_alternative_name":[],"type":"letsencryt","updated_at":"2023-06-29T13:29:01.041709Z"}' + body: '{"common_name":"195-154-197-174.lb.fr-par.scw.cloud","created_at":"2023-07-03T20:09:10.660909Z","fingerprint":"216495439a5dc06a4890d7d5eefb5cccaf89f6ef","id":"cfb313b0-af39-4870-952a-c81ac9d5d911","lb":{"backend_count":1,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":1,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:09:10.675943Z","zone":"fr-par-1"},"name":"test-cert-front-end","not_valid_after":"2023-10-01T19:09:13Z","not_valid_before":"2023-07-03T19:09:14Z","status":"ready","status_details":null,"subject_alternative_name":[],"type":"letsencryt","updated_at":"2023-07-03T20:09:41.888149Z"}' headers: Content-Length: - - "1331" + - "1299" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:02 GMT + - Mon, 03 Jul 2023 20:09:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1061,7 +1061,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2373190c-69d6-4f3e-ad25-59f3db5dc386 + - 148c1e5b-f1c0-4e18-867e-3fed9c0d8cc7 status: 200 OK code: 200 duration: "" @@ -1072,19 +1072,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/98c22726-8c24-4ce3-91b9-57e343ecc305 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/55b8984f-c033-4493-a983-d6b7579da374 method: GET response: - body: '{"created_at":"2023-06-29T13:28:29.735661Z","failover_host":null,"forward_port":443,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":443,"tcp_config":{},"transient_check_delay":null},"id":"98c22726-8c24-4ce3-91b9-57e343ecc305","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":1,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[{"created_at":"2023-06-29T13:26:54.421546Z","id":"e2e8d306-d4a6-4af2-968a-a2fbbe426012","ip_address":"10.64.114.37","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:29:01.354838Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:29.779027Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-gracious-curie","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:28:29.735661Z"}' + body: '{"created_at":"2023-07-03T20:09:10.631153Z","failover_host":null,"forward_port":443,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":443,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"55b8984f-c033-4493-a983-d6b7579da374","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":1,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[{"created_at":"2023-07-03T11:08:14.603654Z","id":"0a550ba3-8a59-468a-9f48-8695534f66b4","ip_address":"10.71.42.33","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:09:42.215475Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:09:10.675943Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-mclean","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:09:10.631153Z"}' headers: Content-Length: - - "1958" + - "1900" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:02 GMT + - Mon, 03 Jul 2023 20:09:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1094,7 +1094,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a712e843-01f4-4333-9c20-2edc57552736 + - dae1ae71-fe1b-42a4-ba72-93b7dd6bc8b2 status: 200 OK code: 200 duration: "" @@ -1105,19 +1105,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/84646475-9595-440e-8abe-e6ca38e1d9e9 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/cfb313b0-af39-4870-952a-c81ac9d5d911 method: GET response: - body: '{"common_name":"51-159-27-185.lb.fr-par.scw.cloud","created_at":"2023-06-29T13:28:29.764328Z","fingerprint":"1013fd13e4f1aac7405246c181d18c7c4013dbc2","id":"84646475-9595-440e-8abe-e6ca38e1d9e9","lb":{"backend_count":1,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":1,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:29.779027Z","zone":"fr-par-1"},"name":"test-cert-front-end","not_valid_after":"2023-09-27T12:28:34Z","not_valid_before":"2023-06-29T12:28:35Z","status":"ready","status_details":null,"subject_alternative_name":[],"type":"letsencryt","updated_at":"2023-06-29T13:29:01.041709Z"}' + body: '{"common_name":"195-154-197-174.lb.fr-par.scw.cloud","created_at":"2023-07-03T20:09:10.660909Z","fingerprint":"216495439a5dc06a4890d7d5eefb5cccaf89f6ef","id":"cfb313b0-af39-4870-952a-c81ac9d5d911","lb":{"backend_count":1,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":1,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:09:10.675943Z","zone":"fr-par-1"},"name":"test-cert-front-end","not_valid_after":"2023-10-01T19:09:13Z","not_valid_before":"2023-07-03T19:09:14Z","status":"ready","status_details":null,"subject_alternative_name":[],"type":"letsencryt","updated_at":"2023-07-03T20:09:41.888149Z"}' headers: Content-Length: - - "1331" + - "1299" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:02 GMT + - Mon, 03 Jul 2023 20:09:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1127,7 +1127,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6214975-84cb-44b2-ab2b-cef99348a5cb + - e8ae0e30-9a9d-4cc4-89c6-7f1b43a31540 status: 200 OK code: 200 duration: "" @@ -1138,19 +1138,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/376dd211-d713-423c-af22-2e63c2ee3f0a + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9080895-94c6-441d-870e-0b15be7abea7 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":1,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[{"created_at":"2023-06-29T13:26:54.421546Z","id":"e2e8d306-d4a6-4af2-968a-a2fbbe426012","ip_address":"10.64.114.37","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:29:01.354838Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:29.779027Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":1,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[{"created_at":"2023-07-03T11:08:14.603654Z","id":"0a550ba3-8a59-468a-9f48-8695534f66b4","ip_address":"10.71.42.33","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:09:42.215475Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:09:10.675943Z","zone":"fr-par-1"}' headers: Content-Length: - - "1092" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:02 GMT + - Mon, 03 Jul 2023 20:09:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1160,7 +1160,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b43244e7-9bf3-400d-a616-194ea38b986b + - 029abab4-b38e-486c-be14-4c47f5d1f7b0 status: 200 OK code: 200 duration: "" @@ -1171,19 +1171,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/ac485df2-9a94-4781-aca0-b0fff592c0bb + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/0fdc46fd-9d59-4937-aa06-ecff05091b4b method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:28:29.735661Z","failover_host":null,"forward_port":443,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":443,"tcp_config":{},"transient_check_delay":null},"id":"98c22726-8c24-4ce3-91b9-57e343ecc305","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":1,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:29.779027Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-gracious-curie","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:28:29.735661Z"},"certificate":{"common_name":"51-159-27-185.lb.fr-par.scw.cloud","created_at":"2023-06-29T13:28:29.764328Z","fingerprint":"1013fd13e4f1aac7405246c181d18c7c4013dbc2","id":"84646475-9595-440e-8abe-e6ca38e1d9e9","lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"test-cert-front-end","not_valid_after":"2023-09-27T12:28:34Z","not_valid_before":"2023-06-29T12:28:35Z","status":"ready","status_details":null,"subject_alternative_name":[],"type":"letsencryt","updated_at":"2023-06-29T13:29:01.041709Z"},"certificate_ids":["84646475-9595-440e-8abe-e6ca38e1d9e9"],"created_at":"2023-06-29T13:29:00.555588Z","enable_http3":false,"id":"ac485df2-9a94-4781-aca0-b0fff592c0bb","inbound_port":443,"lb":{"backend_count":1,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":1,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:29.779027Z","zone":"fr-par-1"},"name":"tf-lb-frt-angry-varahamihira","timeout_client":null,"updated_at":"2023-06-29T13:29:01.038530Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:09:10.631153Z","failover_host":null,"forward_port":443,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":443,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"55b8984f-c033-4493-a983-d6b7579da374","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":1,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:09:10.675943Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-cool-mclean","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:09:10.631153Z"},"certificate":{"common_name":"195-154-197-174.lb.fr-par.scw.cloud","created_at":"2023-07-03T20:09:10.660909Z","fingerprint":"216495439a5dc06a4890d7d5eefb5cccaf89f6ef","id":"cfb313b0-af39-4870-952a-c81ac9d5d911","lb":{"backend_count":0,"created_at":"0001-01-01T00:00:00Z","description":"","frontend_count":0,"id":"","instances":[],"ip":[],"name":"","organization_id":"","private_network_count":0,"project_id":"","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_unknown","status":"to_create","subscriber":null,"tags":[],"type":"","updated_at":"0001-01-01T00:00:00Z","zone":"fr-par-1"},"name":"test-cert-front-end","not_valid_after":"2023-10-01T19:09:13Z","not_valid_before":"2023-07-03T19:09:14Z","status":"ready","status_details":null,"subject_alternative_name":[],"type":"letsencryt","updated_at":"2023-07-03T20:09:41.888149Z"},"certificate_ids":["cfb313b0-af39-4870-952a-c81ac9d5d911"],"created_at":"2023-07-03T20:09:41.428603Z","enable_http3":false,"id":"0fdc46fd-9d59-4937-aa06-ecff05091b4b","inbound_port":443,"lb":{"backend_count":1,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":1,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:09:10.675943Z","zone":"fr-par-1"},"name":"tf-lb-frt-youthful-lamport","timeout_client":null,"updated_at":"2023-07-03T20:09:41.885720Z"}' headers: Content-Length: - - "3824" + - "3710" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:02 GMT + - Mon, 03 Jul 2023 20:09:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1193,7 +1193,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6cc6a29e-e2b7-4eff-9a82-b720724b91eb + - 30f89a6b-620a-4b36-a4f0-262c9ad359b5 status: 200 OK code: 200 duration: "" @@ -1204,19 +1204,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/ac485df2-9a94-4781-aca0-b0fff592c0bb/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/0fdc46fd-9d59-4937-aa06-ecff05091b4b/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:02 GMT + - Mon, 03 Jul 2023 20:09:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1226,7 +1226,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf3da4dc-0b9f-41f5-880a-6112d923bca2 + - 0e28e158-522d-4a19-b012-fa3dff880226 status: 200 OK code: 200 duration: "" @@ -1237,7 +1237,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/ac485df2-9a94-4781-aca0-b0fff592c0bb + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/0fdc46fd-9d59-4937-aa06-ecff05091b4b method: DELETE response: body: "" @@ -1247,7 +1247,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:03 GMT + - Mon, 03 Jul 2023 20:09:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1257,7 +1257,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 277bb20c-b198-4f6c-b53d-a59b46f31bd1 + - 68e539a6-5a0a-406e-a2bb-a10d813fbcf3 status: 204 No Content code: 204 duration: "" @@ -1268,19 +1268,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/376dd211-d713-423c-af22-2e63c2ee3f0a + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9080895-94c6-441d-870e-0b15be7abea7 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":0,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[{"created_at":"2023-06-29T13:26:54.421546Z","id":"e2e8d306-d4a6-4af2-968a-a2fbbe426012","ip_address":"10.64.114.37","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:29:03.415474Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:29.779027Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":0,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[{"created_at":"2023-07-03T11:08:14.603654Z","id":"0a550ba3-8a59-468a-9f48-8695534f66b4","ip_address":"10.71.42.33","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:09:44.440606Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:09:10.675943Z","zone":"fr-par-1"}' headers: Content-Length: - - "1094" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:03 GMT + - Mon, 03 Jul 2023 20:09:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1290,7 +1290,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e883fe12-408c-4bd6-9350-0af0ffeff734 + - 7804d5d4-3330-404d-a46c-bdea00d9fea9 status: 200 OK code: 200 duration: "" @@ -1301,19 +1301,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/84646475-9595-440e-8abe-e6ca38e1d9e9 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/cfb313b0-af39-4870-952a-c81ac9d5d911 method: GET response: - body: '{"common_name":"51-159-27-185.lb.fr-par.scw.cloud","created_at":"2023-06-29T13:28:29.764328Z","fingerprint":"1013fd13e4f1aac7405246c181d18c7c4013dbc2","id":"84646475-9595-440e-8abe-e6ca38e1d9e9","lb":{"backend_count":1,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":0,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:29.779027Z","zone":"fr-par-1"},"name":"test-cert-front-end","not_valid_after":"2023-09-27T12:28:34Z","not_valid_before":"2023-06-29T12:28:35Z","status":"ready","status_details":null,"subject_alternative_name":[],"type":"letsencryt","updated_at":"2023-06-29T13:29:01.041709Z"}' + body: '{"common_name":"195-154-197-174.lb.fr-par.scw.cloud","created_at":"2023-07-03T20:09:10.660909Z","fingerprint":"216495439a5dc06a4890d7d5eefb5cccaf89f6ef","id":"cfb313b0-af39-4870-952a-c81ac9d5d911","lb":{"backend_count":1,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":0,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:09:10.675943Z","zone":"fr-par-1"},"name":"test-cert-front-end","not_valid_after":"2023-10-01T19:09:13Z","not_valid_before":"2023-07-03T19:09:14Z","status":"ready","status_details":null,"subject_alternative_name":[],"type":"letsencryt","updated_at":"2023-07-03T20:09:41.888149Z"}' headers: Content-Length: - - "1331" + - "1299" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:03 GMT + - Mon, 03 Jul 2023 20:09:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1323,7 +1323,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9150da72-a21c-4c02-a277-6d9a7621e182 + - b103df1d-dc00-492c-b1e1-0c9587930932 status: 200 OK code: 200 duration: "" @@ -1334,19 +1334,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/376dd211-d713-423c-af22-2e63c2ee3f0a + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9080895-94c6-441d-870e-0b15be7abea7 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":0,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[{"created_at":"2023-06-29T13:26:54.421546Z","id":"e2e8d306-d4a6-4af2-968a-a2fbbe426012","ip_address":"10.64.114.37","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:29:03.415474Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:28:29.779027Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":0,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[{"created_at":"2023-07-03T11:08:14.603654Z","id":"0a550ba3-8a59-468a-9f48-8695534f66b4","ip_address":"10.71.42.33","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:09:44.440606Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:09:10.675943Z","zone":"fr-par-1"}' headers: Content-Length: - - "1094" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:03 GMT + - Mon, 03 Jul 2023 20:09:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1356,7 +1356,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4079d86-f638-48be-a4c4-2419573643fa + - 6294b225-d817-4638-b6bd-283ab67222c4 status: 200 OK code: 200 duration: "" @@ -1367,7 +1367,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/98c22726-8c24-4ce3-91b9-57e343ecc305 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/55b8984f-c033-4493-a983-d6b7579da374 method: DELETE response: body: "" @@ -1377,7 +1377,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:03 GMT + - Mon, 03 Jul 2023 20:09:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1387,7 +1387,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5eeb2b4d-683f-431f-b52c-a939b2ede300 + - dcbcf174-3ce9-4424-8b3f-11097004312b status: 204 No Content code: 204 duration: "" @@ -1398,7 +1398,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/84646475-9595-440e-8abe-e6ca38e1d9e9 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/cfb313b0-af39-4870-952a-c81ac9d5d911 method: DELETE response: body: "" @@ -1408,7 +1408,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:03 GMT + - Mon, 03 Jul 2023 20:09:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1418,7 +1418,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17a8e9bd-e93d-49fe-9468-f0430df7941b + - b4dd1086-197a-4b87-91fc-5dec2e31745d status: 204 No Content code: 204 duration: "" @@ -1429,7 +1429,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/84646475-9595-440e-8abe-e6ca38e1d9e9 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/certificates/cfb313b0-af39-4870-952a-c81ac9d5d911 method: GET response: body: '{"message":"certificate not Found"}' @@ -1441,7 +1441,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:03 GMT + - Mon, 03 Jul 2023 20:09:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1451,7 +1451,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52d16b17-0681-4d61-a8ff-7adf49e52a54 + - ae5b3ed1-84b4-42c4-9704-0c5e9d5c12d3 status: 404 Not Found code: 404 duration: "" @@ -1462,19 +1462,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/376dd211-d713-423c-af22-2e63c2ee3f0a + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9080895-94c6-441d-870e-0b15be7abea7 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":0,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[{"created_at":"2023-06-29T13:26:54.421546Z","id":"e2e8d306-d4a6-4af2-968a-a2fbbe426012","ip_address":"10.64.114.37","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:29:03.857183Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:03.828950Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":0,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[{"created_at":"2023-07-03T11:08:14.603654Z","id":"0a550ba3-8a59-468a-9f48-8695534f66b4","ip_address":"10.71.42.33","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:09:44.851552Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:09:44.831054Z","zone":"fr-par-1"}' headers: Content-Length: - - "1094" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:04 GMT + - Mon, 03 Jul 2023 20:09:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1484,7 +1484,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd4977ec-e51c-43a8-8ce0-d85ad8261e43 + - 97f39b83-2600-4b5a-ad45-d001e1e85e51 status: 200 OK code: 200 duration: "" @@ -1495,19 +1495,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/376dd211-d713-423c-af22-2e63c2ee3f0a + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9080895-94c6-441d-870e-0b15be7abea7 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":0,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[{"created_at":"2023-06-29T13:26:54.421546Z","id":"e2e8d306-d4a6-4af2-968a-a2fbbe426012","ip_address":"10.64.114.37","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:29:03.857183Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:03.828950Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":0,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[{"created_at":"2023-07-03T11:08:14.603654Z","id":"0a550ba3-8a59-468a-9f48-8695534f66b4","ip_address":"10.71.42.33","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:09:45.100113Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:09:44.831054Z","zone":"fr-par-1"}' headers: Content-Length: - - "1094" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:04 GMT + - Mon, 03 Jul 2023 20:09:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1517,7 +1517,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d0f055a-b3da-4ba6-a4e8-785fa72a26b3 + - acded83e-414b-46a5-9db1-1d0e537d2c3a status: 200 OK code: 200 duration: "" @@ -1528,7 +1528,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/376dd211-d713-423c-af22-2e63c2ee3f0a?release_ip=false + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9080895-94c6-441d-870e-0b15be7abea7?release_ip=false method: DELETE response: body: "" @@ -1538,7 +1538,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:04 GMT + - Mon, 03 Jul 2023 20:09:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1548,7 +1548,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 605c73bb-e3a1-4157-a96e-ed80a58c9005 + - 7ae5d97f-4168-410c-9307-7c756f33bfff status: 204 No Content code: 204 duration: "" @@ -1559,19 +1559,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/376dd211-d713-423c-af22-2e63c2ee3f0a + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9080895-94c6-441d-870e-0b15be7abea7 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:27:59.031410Z","description":"","frontend_count":0,"id":"376dd211-d713-423c-af22-2e63c2ee3f0a","instances":[{"created_at":"2023-06-29T13:26:54.421546Z","id":"e2e8d306-d4a6-4af2-968a-a2fbbe426012","ip_address":"10.64.114.37","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:29:04.109350Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"376dd211-d713-423c-af22-2e63c2ee3f0a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","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":"2023-06-29T13:29:04.198911Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:08:39.996158Z","description":"","frontend_count":0,"id":"b9080895-94c6-441d-870e-0b15be7abea7","instances":[{"created_at":"2023-07-03T11:08:14.603654Z","id":"0a550ba3-8a59-468a-9f48-8695534f66b4","ip_address":"10.71.42.33","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:09:45.100113Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"b9080895-94c6-441d-870e-0b15be7abea7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:09:45.290438Z","zone":"fr-par-1"}' headers: Content-Length: - - "1096" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:04 GMT + - Mon, 03 Jul 2023 20:09:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1581,7 +1581,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 823f38ec-83f0-47d1-828c-dc55adcdab65 + - de1a265b-d2d8-4607-9200-c6b1df41d6c1 status: 200 OK code: 200 duration: "" @@ -1592,7 +1592,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/376dd211-d713-423c-af22-2e63c2ee3f0a + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9080895-94c6-441d-870e-0b15be7abea7 method: GET response: body: '{"message":"lbs not Found"}' @@ -1604,7 +1604,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:34 GMT + - Mon, 03 Jul 2023 20:10:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1614,7 +1614,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 798f8f14-b589-4c5e-bef8-c231f61a9965 + - ea15ca72-4996-484a-b712-1a2058de3b66 status: 404 Not Found code: 404 duration: "" @@ -1625,7 +1625,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/376dd211-d713-423c-af22-2e63c2ee3f0a + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/b9080895-94c6-441d-870e-0b15be7abea7 method: GET response: body: '{"message":"lbs not Found"}' @@ -1637,7 +1637,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:34 GMT + - Mon, 03 Jul 2023 20:10:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1647,7 +1647,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7e811a6-efb2-4cdb-8c28-d3bcff50ce4f + - 5559a27b-02b3-4153-b3aa-9690fe43ac6e status: 404 Not Found code: 404 duration: "" @@ -1658,19 +1658,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "285" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:34 GMT + - Mon, 03 Jul 2023 20:10:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1680,7 +1680,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 66c399fd-fce5-4510-90df-e6552c4cc9e7 + - 642cbb11-5617-45e1-87b5-bc2094e84800 status: 200 OK code: 200 duration: "" @@ -1691,7 +1691,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: DELETE response: body: "" @@ -1701,7 +1701,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:34 GMT + - Mon, 03 Jul 2023 20:10:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1711,7 +1711,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3cee13d0-305e-46f3-82fe-60a7e84d0f81 + - 91eb5cd8-e78b-473c-95c6-9bdcebcdea58 status: 204 No Content code: 204 duration: "" @@ -1722,7 +1722,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/ac485df2-9a94-4781-aca0-b0fff592c0bb + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/0fdc46fd-9d59-4937-aa06-ecff05091b4b method: GET response: body: '{"message":"frontend not Found"}' @@ -1734,7 +1734,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:29:34 GMT + - Mon, 03 Jul 2023 20:10:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1744,7 +1744,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5128fc33-a12e-417b-adc8-0afe0bac0b8a + - 6a40a5f9-6c55-495b-9af6-a00658929fd5 status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/lb-route-with-host-header.cassette.yaml b/scaleway/testdata/lb-route-with-host-header.cassette.yaml index dd74b14664..283182d8bd 100644 --- a/scaleway/testdata/lb-route-with-host-header.cassette.yaml +++ b/scaleway/testdata/lb-route-with-host-header.cassette.yaml @@ -13,16 +13,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips method: POST response: - body: '{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "287" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:56 GMT + - Mon, 03 Jul 2023 20:03:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -32,7 +32,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a35a6de2-9598-4b06-a0ed-1e6b2dcda4cb + - 2f89b897-16a1-489e-9394-456a54458a90 status: 200 OK code: 200 duration: "" @@ -43,19 +43,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c6b47cd5-7fca-4acc-bde4-e32e91f58310 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "287" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:56 GMT + - Mon, 03 Jul 2023 20:03:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -65,12 +65,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8eb26d01-ff2f-4e4e-ad4d-160c050eabd4 + - 5d69e12d-3cee-4724-9324-1ec2f5f7483d status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-lb","description":"","ip_id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","assign_flexible_ip":null,"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":"86df9ff8-7a77-492d-9b03-4f6205127499","assign_flexible_ip":null,"tags":null,"type":"lb-s","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' form: {} headers: Content-Type: @@ -81,16 +81,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs method: POST response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:22:56.183622998Z","description":"","frontend_count":0,"id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:22:56.183622998Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:03:26.392985478Z","description":"","frontend_count":0,"id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:03:26.392985478Z","zone":"fr-par-1"}' headers: Content-Length: - - "886" + - "862" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:56 GMT + - Mon, 03 Jul 2023 20:03:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -100,7 +100,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 207493a6-da42-4ac0-8844-e95428005169 + - f3c309c5-9b16-4822-96c6-334c6a919291 status: 200 OK code: 200 duration: "" @@ -111,19 +111,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/17eb1fab-7eec-4eee-bdbd-0bc3f857c33c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/bf8f965e-bec1-486a-a2e7-0d8fa587b06a method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:22:56.183623Z","description":"","frontend_count":0,"id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:22:56.183623Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:03:26.392985Z","description":"","frontend_count":0,"id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","instances":[{"created_at":"2023-07-03T20:02:14.923709Z","id":"c8fc27d9-e5b2-478a-a8ff-b06a121b12b2","ip_address":"10.76.120.69","region":"fr-par","status":"unknown","updated_at":"2023-07-03T20:03:26.641795Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:03:26.655598Z","zone":"fr-par-1"}' headers: Content-Length: - - "880" + - "1069" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:22:56 GMT + - Mon, 03 Jul 2023 20:03:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -133,7 +133,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c38b3483-d0ee-429e-b943-3730e573bdc7 + - 58b0823c-d636-40fd-b60c-57a5388f5e47 status: 200 OK code: 200 duration: "" @@ -144,19 +144,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/17eb1fab-7eec-4eee-bdbd-0bc3f857c33c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/bf8f965e-bec1-486a-a2e7-0d8fa587b06a method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:22:56.183623Z","description":"","frontend_count":0,"id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","instances":[{"created_at":"2023-06-29T13:21:44.552728Z","id":"a2739ea8-efe0-442c-8931-2560fc530c02","ip_address":"10.194.174.75","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:22:57.470919Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:22:58.894853Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:03:26.392985Z","description":"","frontend_count":0,"id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","instances":[{"created_at":"2023-07-03T20:02:14.923709Z","id":"c8fc27d9-e5b2-478a-a8ff-b06a121b12b2","ip_address":"10.76.120.69","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:03:27.457552Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:03:28.566832Z","zone":"fr-par-1"}' headers: Content-Length: - - "1095" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:23:26 GMT + - Mon, 03 Jul 2023 20:03:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -166,7 +166,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 243ee929-03bc-47c3-88ec-85a6e85c2aec + - abd4e4c2-bf4e-4d36-9189-5649b1fad5b3 status: 200 OK code: 200 duration: "" @@ -177,19 +177,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/17eb1fab-7eec-4eee-bdbd-0bc3f857c33c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/bf8f965e-bec1-486a-a2e7-0d8fa587b06a method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:22:56.183623Z","description":"","frontend_count":0,"id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","instances":[{"created_at":"2023-06-29T13:21:44.552728Z","id":"a2739ea8-efe0-442c-8931-2560fc530c02","ip_address":"10.194.174.75","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:22:57.470919Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:22:58.894853Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:03:26.392985Z","description":"","frontend_count":0,"id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","instances":[{"created_at":"2023-07-03T20:02:14.923709Z","id":"c8fc27d9-e5b2-478a-a8ff-b06a121b12b2","ip_address":"10.76.120.69","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:03:27.457552Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:03:28.566832Z","zone":"fr-par-1"}' headers: Content-Length: - - "1095" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:23:26 GMT + - Mon, 03 Jul 2023 20:03:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -199,7 +199,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e86e34fb-ba61-45ca-a6d0-a2e9d9d5c156 + - 157717fd-09ca-404c-88b8-8218a8e47ebd status: 200 OK code: 200 duration: "" @@ -210,19 +210,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/17eb1fab-7eec-4eee-bdbd-0bc3f857c33c/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/bf8f965e-bec1-486a-a2e7-0d8fa587b06a/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:23:26 GMT + - Mon, 03 Jul 2023 20:03:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -232,7 +232,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3058f29c-5e47-409e-9114-ed2f5162d2a8 + - 07150c7e-074e-4665-80af-9116760d288a status: 200 OK code: 200 duration: "" @@ -243,19 +243,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/17eb1fab-7eec-4eee-bdbd-0bc3f857c33c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/bf8f965e-bec1-486a-a2e7-0d8fa587b06a method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:22:56.183623Z","description":"","frontend_count":0,"id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","instances":[{"created_at":"2023-06-29T13:21:44.552728Z","id":"a2739ea8-efe0-442c-8931-2560fc530c02","ip_address":"10.194.174.75","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:22:57.470919Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:22:58.894853Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:03:26.392985Z","description":"","frontend_count":0,"id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","instances":[{"created_at":"2023-07-03T20:02:14.923709Z","id":"c8fc27d9-e5b2-478a-a8ff-b06a121b12b2","ip_address":"10.76.120.69","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:03:27.457552Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:03:28.566832Z","zone":"fr-par-1"}' headers: Content-Length: - - "1095" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:23:26 GMT + - Mon, 03 Jul 2023 20:03:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -265,12 +265,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 384dc301-7de4-4ab9-a744-97f6734c7a5a + - 8007b7f8-44ba-47d1-a068-9ce34c62111d status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-bkd-objective-swartz","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_max_retries":2,"check_send_proxy":false,"transient_check_delay":null,"check_delay":60000,"check_timeout":30000},"server_ip":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":null,"max_retries":3,"max_connections":null,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' + body: '{"name":"tf-lb-bkd-blissful-kowalevski","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_max_retries":2,"check_send_proxy":false,"transient_check_delay":"0.500000000s","check_delay":60000,"check_timeout":30000},"server_ip":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":null,"max_retries":3,"max_connections":null,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' form: {} headers: Content-Type: @@ -278,19 +278,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/17eb1fab-7eec-4eee-bdbd-0bc3f857c33c/backends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/bf8f965e-bec1-486a-a2e7-0d8fa587b06a/backends method: POST response: - body: '{"created_at":"2023-06-29T13:23:26.831227826Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"72e9f050-b182-4722-832e-a2ea7c3b5f86","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:22:56.183623Z","description":"","frontend_count":0,"id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","instances":[{"created_at":"2023-06-29T13:21:44.552728Z","id":"a2739ea8-efe0-442c-8931-2560fc530c02","ip_address":"10.194.174.75","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:23:26.868639913Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:22:58.894853Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-objective-swartz","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:23:26.831227826Z"}' + body: '{"created_at":"2023-07-03T20:03:57.178043128Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8514c832-f62c-456b-b13e-66614c1ed4e5","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:03:26.392985Z","description":"","frontend_count":0,"id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","instances":[{"created_at":"2023-07-03T20:02:14.923709Z","id":"c8fc27d9-e5b2-478a-a8ff-b06a121b12b2","ip_address":"10.76.120.69","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:03:57.231563184Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:03:28.566832Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-blissful-kowalevski","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:03:57.178043128Z"}' headers: Content-Length: - - "1972" + - "1918" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:23:26 GMT + - Mon, 03 Jul 2023 20:03:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -300,7 +300,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa7069c4-d314-42fd-806a-604d41fc51ef + - 38db52c2-d5ea-4d27-9ec7-44bb23c9101e status: 200 OK code: 200 duration: "" @@ -311,19 +311,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/17eb1fab-7eec-4eee-bdbd-0bc3f857c33c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/bf8f965e-bec1-486a-a2e7-0d8fa587b06a method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:22:56.183623Z","description":"","frontend_count":0,"id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","instances":[{"created_at":"2023-06-29T13:21:44.552728Z","id":"a2739ea8-efe0-442c-8931-2560fc530c02","ip_address":"10.194.174.75","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:23:26.868640Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:22:58.894853Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:03:26.392985Z","description":"","frontend_count":0,"id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","instances":[{"created_at":"2023-07-03T20:02:14.923709Z","id":"c8fc27d9-e5b2-478a-a8ff-b06a121b12b2","ip_address":"10.76.120.69","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:03:57.231563Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:03:28.566832Z","zone":"fr-par-1"}' headers: Content-Length: - - "1097" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:23:27 GMT + - Mon, 03 Jul 2023 20:03:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -333,7 +333,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 66392992-fb71-4744-b05d-399951f49597 + - 79bb0483-fda1-4455-aa21-1175e1242b25 status: 200 OK code: 200 duration: "" @@ -344,19 +344,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/72e9f050-b182-4722-832e-a2ea7c3b5f86 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/8514c832-f62c-456b-b13e-66614c1ed4e5 method: GET response: - body: '{"created_at":"2023-06-29T13:23:26.831228Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"72e9f050-b182-4722-832e-a2ea7c3b5f86","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:22:56.183623Z","description":"","frontend_count":0,"id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","instances":[{"created_at":"2023-06-29T13:21:44.552728Z","id":"a2739ea8-efe0-442c-8931-2560fc530c02","ip_address":"10.194.174.75","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:23:26.868640Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:22:58.894853Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-objective-swartz","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:23:26.831228Z"}' + body: '{"created_at":"2023-07-03T20:03:57.178043Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8514c832-f62c-456b-b13e-66614c1ed4e5","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:03:26.392985Z","description":"","frontend_count":0,"id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","instances":[{"created_at":"2023-07-03T20:02:14.923709Z","id":"c8fc27d9-e5b2-478a-a8ff-b06a121b12b2","ip_address":"10.76.120.69","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:03:57.231563Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:03:28.566832Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-blissful-kowalevski","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:03:57.178043Z"}' headers: Content-Length: - - "1963" + - "1909" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:23:27 GMT + - Mon, 03 Jul 2023 20:03:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -366,7 +366,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c1c3b68c-db7d-40c8-a0be-4d3da9fb69a5 + - 570aff8a-e143-4d77-9646-52d49343cde0 status: 200 OK code: 200 duration: "" @@ -377,19 +377,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/17eb1fab-7eec-4eee-bdbd-0bc3f857c33c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/bf8f965e-bec1-486a-a2e7-0d8fa587b06a method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:22:56.183623Z","description":"","frontend_count":0,"id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","instances":[{"created_at":"2023-06-29T13:21:44.552728Z","id":"a2739ea8-efe0-442c-8931-2560fc530c02","ip_address":"10.194.174.75","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:23:27.096652Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:22:58.894853Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:03:26.392985Z","description":"","frontend_count":0,"id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","instances":[{"created_at":"2023-07-03T20:02:14.923709Z","id":"c8fc27d9-e5b2-478a-a8ff-b06a121b12b2","ip_address":"10.76.120.69","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:03:57.486306Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:03:28.566832Z","zone":"fr-par-1"}' headers: Content-Length: - - "1095" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:23:27 GMT + - Mon, 03 Jul 2023 20:03:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -399,7 +399,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6a51216-8d4f-4c6d-9936-98ddf381da21 + - c82c93e7-2f64-4f9d-86a8-62f14ddfa2ca status: 200 OK code: 200 duration: "" @@ -410,19 +410,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/17eb1fab-7eec-4eee-bdbd-0bc3f857c33c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/bf8f965e-bec1-486a-a2e7-0d8fa587b06a method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:22:56.183623Z","description":"","frontend_count":0,"id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","instances":[{"created_at":"2023-06-29T13:21:44.552728Z","id":"a2739ea8-efe0-442c-8931-2560fc530c02","ip_address":"10.194.174.75","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:23:27.096652Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:22:58.894853Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:03:26.392985Z","description":"","frontend_count":0,"id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","instances":[{"created_at":"2023-07-03T20:02:14.923709Z","id":"c8fc27d9-e5b2-478a-a8ff-b06a121b12b2","ip_address":"10.76.120.69","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:03:57.486306Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:03:28.566832Z","zone":"fr-par-1"}' headers: Content-Length: - - "1095" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:23:27 GMT + - Mon, 03 Jul 2023 20:03:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -432,12 +432,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e0e11ff-b493-4aa6-9f37-41a755d16a0d + - 226f55e4-da5e-40c3-a95c-c36262a2e7ee status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-frt-angry-tereshkova","inbound_port":80,"backend_id":"72e9f050-b182-4722-832e-a2ea7c3b5f86","certificate_ids":null,"enable_http3":false,"timeout_client":null}' + body: '{"name":"tf-lb-frt-sweet-jepsen","inbound_port":80,"backend_id":"8514c832-f62c-456b-b13e-66614c1ed4e5","certificate_ids":null,"enable_http3":false,"timeout_client":null}' form: {} headers: Content-Type: @@ -445,19 +445,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/17eb1fab-7eec-4eee-bdbd-0bc3f857c33c/frontends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/bf8f965e-bec1-486a-a2e7-0d8fa587b06a/frontends method: POST response: - body: '{"backend":{"created_at":"2023-06-29T13:23:26.831228Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"72e9f050-b182-4722-832e-a2ea7c3b5f86","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:22:56.183623Z","description":"","frontend_count":1,"id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:22:58.894853Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-objective-swartz","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:23:26.831228Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:23:27.411660Z","enable_http3":false,"id":"0c00dad7-dd48-4710-8e54-141a202fc16c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:22:56.183623Z","description":"","frontend_count":1,"id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","instances":[{"created_at":"2023-06-29T13:21:44.552728Z","id":"a2739ea8-efe0-442c-8931-2560fc530c02","ip_address":"10.194.174.75","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:23:27.475339403Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:22:58.894853Z","zone":"fr-par-1"},"name":"tf-lb-frt-angry-tereshkova","timeout_client":null,"updated_at":"2023-06-29T13:23:27.411660Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:03:57.178043Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8514c832-f62c-456b-b13e-66614c1ed4e5","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:03:26.392985Z","description":"","frontend_count":1,"id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:03:28.566832Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-blissful-kowalevski","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:03:57.178043Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:03:57.927673Z","enable_http3":false,"id":"15bb7cd2-891b-40c8-b005-6ffc732e0c9c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:03:26.392985Z","description":"","frontend_count":1,"id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","instances":[{"created_at":"2023-07-03T20:02:14.923709Z","id":"c8fc27d9-e5b2-478a-a8ff-b06a121b12b2","ip_address":"10.76.120.69","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:03:57.980139904Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:03:28.566832Z","zone":"fr-par-1"},"name":"tf-lb-frt-sweet-jepsen","timeout_client":null,"updated_at":"2023-07-03T20:03:57.927673Z"}' headers: Content-Length: - - "3137" + - "3045" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:23:27 GMT + - Mon, 03 Jul 2023 20:03:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -467,7 +467,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ce5cb56-ba59-4e85-9b0c-a2645c9a1062 + - 353319db-0096-4685-838f-3dfc1f59e0d0 status: 200 OK code: 200 duration: "" @@ -478,19 +478,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/17eb1fab-7eec-4eee-bdbd-0bc3f857c33c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/bf8f965e-bec1-486a-a2e7-0d8fa587b06a method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:22:56.183623Z","description":"","frontend_count":1,"id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","instances":[{"created_at":"2023-06-29T13:21:44.552728Z","id":"a2739ea8-efe0-442c-8931-2560fc530c02","ip_address":"10.194.174.75","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:23:27.475339Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:22:58.894853Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:03:26.392985Z","description":"","frontend_count":1,"id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","instances":[{"created_at":"2023-07-03T20:02:14.923709Z","id":"c8fc27d9-e5b2-478a-a8ff-b06a121b12b2","ip_address":"10.76.120.69","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:03:57.980140Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:03:28.566832Z","zone":"fr-par-1"}' headers: Content-Length: - - "1097" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:23:27 GMT + - Mon, 03 Jul 2023 20:03:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -500,12 +500,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c57f35df-ca95-4df8-a484-176caee83ac8 + - e7b367a4-a8cf-4d7d-a7d1-30fec91fb95e status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-frt-silly-babbage","inbound_port":80,"backend_id":"72e9f050-b182-4722-832e-a2ea7c3b5f86","certificate_ids":null,"enable_http3":false,"timeout_client":null}' + body: '{"name":"tf-lb-frt-great-noyce","inbound_port":80,"backend_id":"8514c832-f62c-456b-b13e-66614c1ed4e5","certificate_ids":null,"enable_http3":false,"timeout_client":null}' form: {} headers: Content-Type: @@ -513,19 +513,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/0c00dad7-dd48-4710-8e54-141a202fc16c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/15bb7cd2-891b-40c8-b005-6ffc732e0c9c method: PUT response: - body: '{"backend":{"created_at":"2023-06-29T13:23:26.831228Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"72e9f050-b182-4722-832e-a2ea7c3b5f86","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:22:56.183623Z","description":"","frontend_count":1,"id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:22:58.894853Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-objective-swartz","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:23:26.831228Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:23:27.411660Z","enable_http3":false,"id":"0c00dad7-dd48-4710-8e54-141a202fc16c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:22:56.183623Z","description":"","frontend_count":1,"id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","instances":[{"created_at":"2023-06-29T13:21:44.552728Z","id":"a2739ea8-efe0-442c-8931-2560fc530c02","ip_address":"10.194.174.75","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:23:27.869003392Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:22:58.894853Z","zone":"fr-par-1"},"name":"tf-lb-frt-silly-babbage","timeout_client":null,"updated_at":"2023-06-29T13:23:27.845658251Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:03:57.178043Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8514c832-f62c-456b-b13e-66614c1ed4e5","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:03:26.392985Z","description":"","frontend_count":1,"id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:03:28.566832Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-blissful-kowalevski","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:03:57.178043Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:03:57.927673Z","enable_http3":false,"id":"15bb7cd2-891b-40c8-b005-6ffc732e0c9c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:03:26.392985Z","description":"","frontend_count":1,"id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","instances":[{"created_at":"2023-07-03T20:02:14.923709Z","id":"c8fc27d9-e5b2-478a-a8ff-b06a121b12b2","ip_address":"10.76.120.69","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:03:58.484152301Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:03:28.566832Z","zone":"fr-par-1"},"name":"tf-lb-frt-great-noyce","timeout_client":null,"updated_at":"2023-07-03T20:03:58.452393294Z"}' headers: Content-Length: - - "3137" + - "3047" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:23:27 GMT + - Mon, 03 Jul 2023 20:03:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -535,7 +535,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b9faf91-e482-4d67-848f-a3a2e4672687 + - fb362fdb-90c9-44b6-bff4-1c20a2203066 status: 200 OK code: 200 duration: "" @@ -546,19 +546,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/0c00dad7-dd48-4710-8e54-141a202fc16c/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/15bb7cd2-891b-40c8-b005-6ffc732e0c9c/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:23:28 GMT + - Mon, 03 Jul 2023 20:03:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -568,7 +568,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92bfd012-1290-4b34-b055-1328c29f87e7 + - be111ce3-f10d-400c-8f80-b52badf33567 status: 200 OK code: 200 duration: "" @@ -579,19 +579,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/0c00dad7-dd48-4710-8e54-141a202fc16c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/15bb7cd2-891b-40c8-b005-6ffc732e0c9c method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:23:26.831228Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"72e9f050-b182-4722-832e-a2ea7c3b5f86","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:22:56.183623Z","description":"","frontend_count":1,"id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:22:58.894853Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-objective-swartz","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:23:26.831228Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:23:27.411660Z","enable_http3":false,"id":"0c00dad7-dd48-4710-8e54-141a202fc16c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:22:56.183623Z","description":"","frontend_count":1,"id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:22:58.894853Z","zone":"fr-par-1"},"name":"tf-lb-frt-silly-babbage","timeout_client":null,"updated_at":"2023-06-29T13:23:27.845658Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:03:57.178043Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8514c832-f62c-456b-b13e-66614c1ed4e5","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:03:26.392985Z","description":"","frontend_count":1,"id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:03:28.566832Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-blissful-kowalevski","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:03:57.178043Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:03:57.927673Z","enable_http3":false,"id":"15bb7cd2-891b-40c8-b005-6ffc732e0c9c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:03:26.392985Z","description":"","frontend_count":1,"id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:03:28.566832Z","zone":"fr-par-1"},"name":"tf-lb-frt-great-noyce","timeout_client":null,"updated_at":"2023-07-03T20:03:58.452393Z"}' headers: Content-Length: - - "2910" + - "2827" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:23:28 GMT + - Mon, 03 Jul 2023 20:03:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -601,7 +601,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63f033e7-0134-439b-9424-140dbccde251 + - 56944930-8de8-4941-9918-6c8cc06c4667 status: 200 OK code: 200 duration: "" @@ -612,19 +612,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/0c00dad7-dd48-4710-8e54-141a202fc16c/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/15bb7cd2-891b-40c8-b005-6ffc732e0c9c/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:23:28 GMT + - Mon, 03 Jul 2023 20:03:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -634,12 +634,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c754930-36eb-4ea2-a06e-ecb07a7df390 + - 085ec7b1-f1ca-4bff-b672-eb3f9e487ae7 status: 200 OK code: 200 duration: "" - request: - body: '{"frontend_id":"0c00dad7-dd48-4710-8e54-141a202fc16c","backend_id":"72e9f050-b182-4722-832e-a2ea7c3b5f86","match":{"host_header":"host.scaleway.com"}}' + body: '{"frontend_id":"15bb7cd2-891b-40c8-b005-6ffc732e0c9c","backend_id":"8514c832-f62c-456b-b13e-66614c1ed4e5","match":{"host_header":"host.scaleway.com"}}' form: {} headers: Content-Type: @@ -650,16 +650,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes method: POST response: - body: '{"backend_id":"72e9f050-b182-4722-832e-a2ea7c3b5f86","created_at":"2023-06-29T13:23:28.412908846Z","frontend_id":"0c00dad7-dd48-4710-8e54-141a202fc16c","id":"da440afb-c0c4-46a0-9861-17d11a59b505","match":{"host_header":"host.scaleway.com"},"updated_at":"2023-06-29T13:23:28.412908846Z"}' + body: '{"backend_id":"8514c832-f62c-456b-b13e-66614c1ed4e5","created_at":"2023-07-03T20:03:59.133298519Z","frontend_id":"15bb7cd2-891b-40c8-b005-6ffc732e0c9c","id":"e40003f9-9b2f-4014-af75-8499fe03c26c","match":{"host_header":"host.scaleway.com"},"updated_at":"2023-07-03T20:03:59.133298519Z"}' headers: Content-Length: - - "291" + - "286" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:23:28 GMT + - Mon, 03 Jul 2023 20:03:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -669,7 +669,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ce14d7c-39f4-4d74-8030-dc0400183c75 + - 10737ced-e9b7-41d2-b30a-6acfc2d049bd status: 200 OK code: 200 duration: "" @@ -680,19 +680,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/da440afb-c0c4-46a0-9861-17d11a59b505 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/e40003f9-9b2f-4014-af75-8499fe03c26c method: GET response: - body: '{"backend_id":"72e9f050-b182-4722-832e-a2ea7c3b5f86","created_at":"2023-06-29T13:23:28.412909Z","frontend_id":"0c00dad7-dd48-4710-8e54-141a202fc16c","id":"da440afb-c0c4-46a0-9861-17d11a59b505","match":{"host_header":"host.scaleway.com"},"updated_at":"2023-06-29T13:23:28.412909Z"}' + body: '{"backend_id":"8514c832-f62c-456b-b13e-66614c1ed4e5","created_at":"2023-07-03T20:03:59.133299Z","frontend_id":"15bb7cd2-891b-40c8-b005-6ffc732e0c9c","id":"e40003f9-9b2f-4014-af75-8499fe03c26c","match":{"host_header":"host.scaleway.com"},"updated_at":"2023-07-03T20:03:59.133299Z"}' headers: Content-Length: - - "285" + - "280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:23:28 GMT + - Mon, 03 Jul 2023 20:03:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -702,7 +702,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f138e325-70a3-41f6-8f4a-d11260b1a8ea + - 633cb2fe-8578-4308-b4f9-fbc9d61b252c status: 200 OK code: 200 duration: "" @@ -713,19 +713,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/da440afb-c0c4-46a0-9861-17d11a59b505 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/e40003f9-9b2f-4014-af75-8499fe03c26c method: GET response: - body: '{"backend_id":"72e9f050-b182-4722-832e-a2ea7c3b5f86","created_at":"2023-06-29T13:23:28.412909Z","frontend_id":"0c00dad7-dd48-4710-8e54-141a202fc16c","id":"da440afb-c0c4-46a0-9861-17d11a59b505","match":{"host_header":"host.scaleway.com"},"updated_at":"2023-06-29T13:23:28.412909Z"}' + body: '{"backend_id":"8514c832-f62c-456b-b13e-66614c1ed4e5","created_at":"2023-07-03T20:03:59.133299Z","frontend_id":"15bb7cd2-891b-40c8-b005-6ffc732e0c9c","id":"e40003f9-9b2f-4014-af75-8499fe03c26c","match":{"host_header":"host.scaleway.com"},"updated_at":"2023-07-03T20:03:59.133299Z"}' headers: Content-Length: - - "285" + - "280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:23:28 GMT + - Mon, 03 Jul 2023 20:03:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -735,7 +735,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea1c0445-1595-4f86-b568-69d74e9a87ae + - 9e0bb0e3-8ea5-4f46-9137-333acc6de7f8 status: 200 OK code: 200 duration: "" @@ -746,19 +746,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c6b47cd5-7fca-4acc-bde4-e32e91f58310 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "321" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:23:29 GMT + - Mon, 03 Jul 2023 20:03:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -768,7 +768,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f0620c5-b8b6-4dde-903e-b6da527c6512 + - 37bad392-2cb1-411f-8253-464b985fce30 status: 200 OK code: 200 duration: "" @@ -779,19 +779,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/17eb1fab-7eec-4eee-bdbd-0bc3f857c33c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/bf8f965e-bec1-486a-a2e7-0d8fa587b06a method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:22:56.183623Z","description":"","frontend_count":1,"id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","instances":[{"created_at":"2023-06-29T13:21:44.552728Z","id":"a2739ea8-efe0-442c-8931-2560fc530c02","ip_address":"10.194.174.75","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:23:28.801507Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:22:58.894853Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:03:26.392985Z","description":"","frontend_count":1,"id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","instances":[{"created_at":"2023-07-03T20:02:14.923709Z","id":"c8fc27d9-e5b2-478a-a8ff-b06a121b12b2","ip_address":"10.76.120.69","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:03:59.460201Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:03:28.566832Z","zone":"fr-par-1"}' headers: Content-Length: - - "1095" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:23:29 GMT + - Mon, 03 Jul 2023 20:04:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -801,7 +801,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9e7d728-d051-49cc-a165-d0fc169085ba + - c3713b19-a609-4bed-9592-cd5a83ccaacf status: 200 OK code: 200 duration: "" @@ -812,19 +812,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/17eb1fab-7eec-4eee-bdbd-0bc3f857c33c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/bf8f965e-bec1-486a-a2e7-0d8fa587b06a method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:22:56.183623Z","description":"","frontend_count":1,"id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","instances":[{"created_at":"2023-06-29T13:21:44.552728Z","id":"a2739ea8-efe0-442c-8931-2560fc530c02","ip_address":"10.194.174.75","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:23:28.801507Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:22:58.894853Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:03:26.392985Z","description":"","frontend_count":1,"id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","instances":[{"created_at":"2023-07-03T20:02:14.923709Z","id":"c8fc27d9-e5b2-478a-a8ff-b06a121b12b2","ip_address":"10.76.120.69","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:03:59.460201Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:03:28.566832Z","zone":"fr-par-1"}' headers: Content-Length: - - "1095" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:23:29 GMT + - Mon, 03 Jul 2023 20:04:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -834,7 +834,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd2c127a-9d4a-4310-8f13-84a5e3ffc45f + - 13957cdf-3a10-411f-81f1-b695b99d1b20 status: 200 OK code: 200 duration: "" @@ -845,19 +845,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/17eb1fab-7eec-4eee-bdbd-0bc3f857c33c/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/bf8f965e-bec1-486a-a2e7-0d8fa587b06a/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:23:29 GMT + - Mon, 03 Jul 2023 20:04:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -867,7 +867,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea00d0af-0751-4176-bb83-f17329c81b8b + - d7bcccca-2800-41fc-b1ae-3be1d6cf0766 status: 200 OK code: 200 duration: "" @@ -878,19 +878,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/72e9f050-b182-4722-832e-a2ea7c3b5f86 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/8514c832-f62c-456b-b13e-66614c1ed4e5 method: GET response: - body: '{"created_at":"2023-06-29T13:23:26.831228Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"72e9f050-b182-4722-832e-a2ea7c3b5f86","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:22:56.183623Z","description":"","frontend_count":1,"id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","instances":[{"created_at":"2023-06-29T13:21:44.552728Z","id":"a2739ea8-efe0-442c-8931-2560fc530c02","ip_address":"10.194.174.75","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:23:28.801507Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:22:58.894853Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-objective-swartz","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:23:26.831228Z"}' + body: '{"created_at":"2023-07-03T20:03:57.178043Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8514c832-f62c-456b-b13e-66614c1ed4e5","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:03:26.392985Z","description":"","frontend_count":1,"id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","instances":[{"created_at":"2023-07-03T20:02:14.923709Z","id":"c8fc27d9-e5b2-478a-a8ff-b06a121b12b2","ip_address":"10.76.120.69","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:03:59.460201Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:03:28.566832Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-blissful-kowalevski","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:03:57.178043Z"}' headers: Content-Length: - - "1961" + - "1907" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:23:29 GMT + - Mon, 03 Jul 2023 20:04:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -900,7 +900,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84a0c62d-338a-4c4e-b6e2-379552857ffa + - 0cc9ee7e-4bdf-474f-adb6-413ee295471f status: 200 OK code: 200 duration: "" @@ -911,19 +911,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/17eb1fab-7eec-4eee-bdbd-0bc3f857c33c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/bf8f965e-bec1-486a-a2e7-0d8fa587b06a method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:22:56.183623Z","description":"","frontend_count":1,"id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","instances":[{"created_at":"2023-06-29T13:21:44.552728Z","id":"a2739ea8-efe0-442c-8931-2560fc530c02","ip_address":"10.194.174.75","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:23:28.801507Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:22:58.894853Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:03:26.392985Z","description":"","frontend_count":1,"id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","instances":[{"created_at":"2023-07-03T20:02:14.923709Z","id":"c8fc27d9-e5b2-478a-a8ff-b06a121b12b2","ip_address":"10.76.120.69","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:03:59.460201Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:03:28.566832Z","zone":"fr-par-1"}' headers: Content-Length: - - "1095" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:23:29 GMT + - Mon, 03 Jul 2023 20:04:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -933,7 +933,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5fd0c2e0-98eb-4778-85c6-a3e2595fe89f + - cf56eded-8c11-46fb-8769-e7babd08d72a status: 200 OK code: 200 duration: "" @@ -944,19 +944,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/0c00dad7-dd48-4710-8e54-141a202fc16c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/15bb7cd2-891b-40c8-b005-6ffc732e0c9c method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:23:26.831228Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"72e9f050-b182-4722-832e-a2ea7c3b5f86","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:22:56.183623Z","description":"","frontend_count":1,"id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:22:58.894853Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-objective-swartz","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:23:26.831228Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:23:27.411660Z","enable_http3":false,"id":"0c00dad7-dd48-4710-8e54-141a202fc16c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:22:56.183623Z","description":"","frontend_count":1,"id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:22:58.894853Z","zone":"fr-par-1"},"name":"tf-lb-frt-silly-babbage","timeout_client":null,"updated_at":"2023-06-29T13:23:27.845658Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:03:57.178043Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"8514c832-f62c-456b-b13e-66614c1ed4e5","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:03:26.392985Z","description":"","frontend_count":1,"id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:03:28.566832Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-blissful-kowalevski","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:03:57.178043Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:03:57.927673Z","enable_http3":false,"id":"15bb7cd2-891b-40c8-b005-6ffc732e0c9c","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:03:26.392985Z","description":"","frontend_count":1,"id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:03:28.566832Z","zone":"fr-par-1"},"name":"tf-lb-frt-great-noyce","timeout_client":null,"updated_at":"2023-07-03T20:03:58.452393Z"}' headers: Content-Length: - - "2910" + - "2827" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:23:29 GMT + - Mon, 03 Jul 2023 20:04:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -966,7 +966,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3f430f71-5b5b-46e7-8be0-76decea9b023 + - fcecfc2a-27f3-4e82-96dd-79e301386442 status: 200 OK code: 200 duration: "" @@ -977,19 +977,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/0c00dad7-dd48-4710-8e54-141a202fc16c/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/15bb7cd2-891b-40c8-b005-6ffc732e0c9c/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:23:29 GMT + - Mon, 03 Jul 2023 20:04:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -999,7 +999,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e0d03b6-024e-42cc-8d00-ba1038f2515a + - 73ba9786-f56b-4eca-9db1-0e767d64b879 status: 200 OK code: 200 duration: "" @@ -1010,19 +1010,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/da440afb-c0c4-46a0-9861-17d11a59b505 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/e40003f9-9b2f-4014-af75-8499fe03c26c method: GET response: - body: '{"backend_id":"72e9f050-b182-4722-832e-a2ea7c3b5f86","created_at":"2023-06-29T13:23:28.412909Z","frontend_id":"0c00dad7-dd48-4710-8e54-141a202fc16c","id":"da440afb-c0c4-46a0-9861-17d11a59b505","match":{"host_header":"host.scaleway.com"},"updated_at":"2023-06-29T13:23:28.412909Z"}' + body: '{"backend_id":"8514c832-f62c-456b-b13e-66614c1ed4e5","created_at":"2023-07-03T20:03:59.133299Z","frontend_id":"15bb7cd2-891b-40c8-b005-6ffc732e0c9c","id":"e40003f9-9b2f-4014-af75-8499fe03c26c","match":{"host_header":"host.scaleway.com"},"updated_at":"2023-07-03T20:03:59.133299Z"}' headers: Content-Length: - - "285" + - "280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:23:29 GMT + - Mon, 03 Jul 2023 20:04:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1032,7 +1032,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a7ac0bb-ee12-4bc4-b510-14b7f3521a30 + - d3647fb3-3d1c-4426-9908-ceb7e8433afa status: 200 OK code: 200 duration: "" @@ -1043,7 +1043,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/da440afb-c0c4-46a0-9861-17d11a59b505 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/e40003f9-9b2f-4014-af75-8499fe03c26c method: DELETE response: body: "" @@ -1053,7 +1053,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:23:30 GMT + - Mon, 03 Jul 2023 20:04:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1063,7 +1063,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e94c0f6-16bb-4d3f-b2e4-133baf445635 + - 7312bb5f-4610-4dfc-a6a7-d840fd8ebf2b status: 204 No Content code: 204 duration: "" @@ -1074,7 +1074,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/0c00dad7-dd48-4710-8e54-141a202fc16c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/15bb7cd2-891b-40c8-b005-6ffc732e0c9c method: DELETE response: body: "" @@ -1084,7 +1084,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:23:30 GMT + - Mon, 03 Jul 2023 20:04:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1094,7 +1094,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9801552f-4bfc-4599-990d-53b575733ef6 + - 1eb69f05-3409-45c0-91a3-b60810542157 status: 204 No Content code: 204 duration: "" @@ -1105,19 +1105,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/17eb1fab-7eec-4eee-bdbd-0bc3f857c33c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/bf8f965e-bec1-486a-a2e7-0d8fa587b06a method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:22:56.183623Z","description":"","frontend_count":0,"id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","instances":[{"created_at":"2023-06-29T13:21:44.552728Z","id":"a2739ea8-efe0-442c-8931-2560fc530c02","ip_address":"10.194.174.75","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:23:30.758372Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:22:58.894853Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:03:26.392985Z","description":"","frontend_count":0,"id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","instances":[{"created_at":"2023-07-03T20:02:14.923709Z","id":"c8fc27d9-e5b2-478a-a8ff-b06a121b12b2","ip_address":"10.76.120.69","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:04:01.577043Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:03:28.566832Z","zone":"fr-par-1"}' headers: Content-Length: - - "1097" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:23:30 GMT + - Mon, 03 Jul 2023 20:04:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1127,7 +1127,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b4a5e871-c010-4efa-96e1-aacfa14ab70b + - e6a1a2cc-9033-4ead-986f-9c73c8d4b2b4 status: 200 OK code: 200 duration: "" @@ -1138,19 +1138,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/17eb1fab-7eec-4eee-bdbd-0bc3f857c33c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/bf8f965e-bec1-486a-a2e7-0d8fa587b06a method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:22:56.183623Z","description":"","frontend_count":0,"id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","instances":[{"created_at":"2023-06-29T13:21:44.552728Z","id":"a2739ea8-efe0-442c-8931-2560fc530c02","ip_address":"10.194.174.75","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:23:30.758372Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:22:58.894853Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:03:26.392985Z","description":"","frontend_count":0,"id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","instances":[{"created_at":"2023-07-03T20:02:14.923709Z","id":"c8fc27d9-e5b2-478a-a8ff-b06a121b12b2","ip_address":"10.76.120.69","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:04:01.577043Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:03:28.566832Z","zone":"fr-par-1"}' headers: Content-Length: - - "1097" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:23:31 GMT + - Mon, 03 Jul 2023 20:04:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1160,7 +1160,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 056d0a76-efd3-4e07-ba14-f69625b6cb57 + - 554f0ad0-b786-46f7-8297-f0a8ede5befd status: 200 OK code: 200 duration: "" @@ -1171,7 +1171,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/72e9f050-b182-4722-832e-a2ea7c3b5f86 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/8514c832-f62c-456b-b13e-66614c1ed4e5 method: DELETE response: body: "" @@ -1181,7 +1181,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:23:31 GMT + - Mon, 03 Jul 2023 20:04:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1191,7 +1191,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 185c6fb1-ee95-44ea-84d5-6519b5b6eead + - 509f99a1-bd53-4e7a-b921-2e091181c215 status: 204 No Content code: 204 duration: "" @@ -1202,19 +1202,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/17eb1fab-7eec-4eee-bdbd-0bc3f857c33c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/bf8f965e-bec1-486a-a2e7-0d8fa587b06a method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:22:56.183623Z","description":"","frontend_count":0,"id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","instances":[{"created_at":"2023-06-29T13:21:44.552728Z","id":"a2739ea8-efe0-442c-8931-2560fc530c02","ip_address":"10.194.174.75","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:23:31.175988Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:22:58.894853Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:03:26.392985Z","description":"","frontend_count":0,"id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","instances":[{"created_at":"2023-07-03T20:02:14.923709Z","id":"c8fc27d9-e5b2-478a-a8ff-b06a121b12b2","ip_address":"10.76.120.69","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:04:02.212187Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:03:28.566832Z","zone":"fr-par-1"}' headers: Content-Length: - - "1097" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:23:31 GMT + - Mon, 03 Jul 2023 20:04:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1224,7 +1224,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69309579-c880-4eb4-a495-0ac7098b503a + - 30968083-9a2b-4c09-b0a3-ae373e44f9c0 status: 200 OK code: 200 duration: "" @@ -1235,19 +1235,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/17eb1fab-7eec-4eee-bdbd-0bc3f857c33c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/bf8f965e-bec1-486a-a2e7-0d8fa587b06a method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:22:56.183623Z","description":"","frontend_count":0,"id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","instances":[{"created_at":"2023-06-29T13:21:44.552728Z","id":"a2739ea8-efe0-442c-8931-2560fc530c02","ip_address":"10.194.174.75","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:23:31.388338Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:22:58.894853Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:03:26.392985Z","description":"","frontend_count":0,"id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","instances":[{"created_at":"2023-07-03T20:02:14.923709Z","id":"c8fc27d9-e5b2-478a-a8ff-b06a121b12b2","ip_address":"10.76.120.69","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:04:02.212187Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:03:28.566832Z","zone":"fr-par-1"}' headers: Content-Length: - - "1095" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:23:31 GMT + - Mon, 03 Jul 2023 20:04:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1257,7 +1257,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d185ccf-8fea-4394-8338-da6cb1c2ec6f + - 1162d3ee-1e4f-47ba-8f89-3678404b9909 status: 200 OK code: 200 duration: "" @@ -1268,7 +1268,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/17eb1fab-7eec-4eee-bdbd-0bc3f857c33c?release_ip=false + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/bf8f965e-bec1-486a-a2e7-0d8fa587b06a?release_ip=false method: DELETE response: body: "" @@ -1278,7 +1278,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:23:31 GMT + - Mon, 03 Jul 2023 20:04:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1288,7 +1288,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b7458ed-7cc8-4813-8cc0-0eeee3bbe2a0 + - 35e549eb-6a2f-4db8-9b86-c5fbf803c4c8 status: 204 No Content code: 204 duration: "" @@ -1299,19 +1299,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/17eb1fab-7eec-4eee-bdbd-0bc3f857c33c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/bf8f965e-bec1-486a-a2e7-0d8fa587b06a method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:22:56.183623Z","description":"","frontend_count":0,"id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","instances":[{"created_at":"2023-06-29T13:21:44.552728Z","id":"a2739ea8-efe0-442c-8931-2560fc530c02","ip_address":"10.194.174.75","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:23:31.388338Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"17eb1fab-7eec-4eee-bdbd-0bc3f857c33c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:23:31.539061Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:03:26.392985Z","description":"","frontend_count":0,"id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","instances":[{"created_at":"2023-07-03T20:02:14.923709Z","id":"c8fc27d9-e5b2-478a-a8ff-b06a121b12b2","ip_address":"10.76.120.69","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:04:02.212187Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"bf8f965e-bec1-486a-a2e7-0d8fa587b06a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:04:02.455697Z","zone":"fr-par-1"}' headers: Content-Length: - - "1099" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:23:31 GMT + - Mon, 03 Jul 2023 20:04:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1321,7 +1321,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e02c2fe1-9468-41be-8656-30350febed48 + - dd776d42-7bab-4f05-b58a-e4db5ff2f108 status: 200 OK code: 200 duration: "" @@ -1332,7 +1332,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/17eb1fab-7eec-4eee-bdbd-0bc3f857c33c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/bf8f965e-bec1-486a-a2e7-0d8fa587b06a method: GET response: body: '{"message":"lbs not Found"}' @@ -1344,7 +1344,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:01 GMT + - Mon, 03 Jul 2023 20:04:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1354,7 +1354,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0237944d-2e8b-4fc0-9481-59f72a6c00e5 + - f434226d-9751-40d6-906e-f96ec8a16c48 status: 404 Not Found code: 404 duration: "" @@ -1365,7 +1365,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/17eb1fab-7eec-4eee-bdbd-0bc3f857c33c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/bf8f965e-bec1-486a-a2e7-0d8fa587b06a method: GET response: body: '{"message":"lbs not Found"}' @@ -1377,7 +1377,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:01 GMT + - Mon, 03 Jul 2023 20:04:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1387,7 +1387,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e6096a2-e245-4667-8cfb-2f466ec11caf + - 97df98a9-8788-4e3c-865b-2247f2a6f264 status: 404 Not Found code: 404 duration: "" @@ -1398,19 +1398,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c6b47cd5-7fca-4acc-bde4-e32e91f58310 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "287" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:01 GMT + - Mon, 03 Jul 2023 20:04:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1420,7 +1420,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71c47c14-c53f-4d00-929a-143f90ddf4da + - 7d78d1b4-e953-4c31-8fb4-f119ee133379 status: 200 OK code: 200 duration: "" @@ -1431,7 +1431,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c6b47cd5-7fca-4acc-bde4-e32e91f58310 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: DELETE response: body: "" @@ -1441,7 +1441,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:02 GMT + - Mon, 03 Jul 2023 20:04:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1451,7 +1451,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50f5b5c7-6ff5-4e40-9bc7-d518969811a5 + - 8c553ff7-9a96-45dd-b134-18c474bb499e status: 204 No Content code: 204 duration: "" @@ -1462,7 +1462,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/da440afb-c0c4-46a0-9861-17d11a59b505 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/e40003f9-9b2f-4014-af75-8499fe03c26c method: GET response: body: '{"message":"privateNetwork not Found"}' @@ -1474,7 +1474,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:02 GMT + - Mon, 03 Jul 2023 20:04:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1484,7 +1484,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5dab8817-6da6-4991-8d72-01470b98e845 + - a0da2668-f019-43ce-b889-a8b6fb3e50d1 status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/lb-route-with-sni.cassette.yaml b/scaleway/testdata/lb-route-with-sni.cassette.yaml index c883e05a6f..9f0172eb22 100644 --- a/scaleway/testdata/lb-route-with-sni.cassette.yaml +++ b/scaleway/testdata/lb-route-with-sni.cassette.yaml @@ -13,16 +13,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips method: POST response: - body: '{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "287" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:08 GMT + - Mon, 03 Jul 2023 20:04:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -32,7 +32,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0494b498-f73b-4718-9d6c-d5cdd836a775 + - 3d438c1d-8bb8-4a7a-ae41-dd4f9c300ddf status: 200 OK code: 200 duration: "" @@ -43,19 +43,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c6b47cd5-7fca-4acc-bde4-e32e91f58310 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "287" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:08 GMT + - Mon, 03 Jul 2023 20:04:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -65,12 +65,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed2467d4-f8da-4250-aa4e-e62db31803a4 + - deca4ddb-f1e3-4d34-ab2b-9a06f628e5de status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-lb","description":"","ip_id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","assign_flexible_ip":null,"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":"86df9ff8-7a77-492d-9b03-4f6205127499","assign_flexible_ip":null,"tags":null,"type":"lb-s","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' form: {} headers: Content-Type: @@ -81,16 +81,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs method: POST response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:24:08.326862360Z","description":"","frontend_count":0,"id":"959a7590-c276-45a4-85e2-2ee89a6ca465","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"959a7590-c276-45a4-85e2-2ee89a6ca465","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:24:08.326862360Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:04:39.479111602Z","description":"","frontend_count":0,"id":"5f2946b3-84dd-40ff-adca-2e82916581ea","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"5f2946b3-84dd-40ff-adca-2e82916581ea","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:04:39.479111602Z","zone":"fr-par-1"}' headers: Content-Length: - - "886" + - "862" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:08 GMT + - Mon, 03 Jul 2023 20:04:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -100,7 +100,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4d57b0c-3365-4ecb-9d39-12c592d1e4dd + - 0e9f584e-06ad-47fb-b375-c7ef76f07596 status: 200 OK code: 200 duration: "" @@ -111,19 +111,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/959a7590-c276-45a4-85e2-2ee89a6ca465 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5f2946b3-84dd-40ff-adca-2e82916581ea method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:24:08.326862Z","description":"","frontend_count":0,"id":"959a7590-c276-45a4-85e2-2ee89a6ca465","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"959a7590-c276-45a4-85e2-2ee89a6ca465","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:24:08.326862Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:04:39.479112Z","description":"","frontend_count":0,"id":"5f2946b3-84dd-40ff-adca-2e82916581ea","instances":[{"created_at":"2023-07-03T20:03:34.760252Z","id":"3a527f9c-37f6-4ad2-ba20-e06abab0f15d","ip_address":"10.64.112.55","region":"fr-par","status":"unknown","updated_at":"2023-07-03T20:04:39.727192Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"5f2946b3-84dd-40ff-adca-2e82916581ea","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:04:39.742236Z","zone":"fr-par-1"}' headers: Content-Length: - - "880" + - "1069" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:08 GMT + - Mon, 03 Jul 2023 20:04:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -133,7 +133,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0246a26f-4d08-4b82-bfcb-f91e6266424b + - 17c69435-0f3c-43b6-aee2-11e687a5fed5 status: 200 OK code: 200 duration: "" @@ -144,19 +144,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/959a7590-c276-45a4-85e2-2ee89a6ca465 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5f2946b3-84dd-40ff-adca-2e82916581ea method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:24:08.326862Z","description":"","frontend_count":0,"id":"959a7590-c276-45a4-85e2-2ee89a6ca465","instances":[{"created_at":"2023-06-29T12:04:31.654274Z","id":"f36ad616-4fd3-4a45-84b8-6eb0ddbcb9c1","ip_address":"10.73.130.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:24:09.725737Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"959a7590-c276-45a4-85e2-2ee89a6ca465","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:24:10.741488Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:04:39.479112Z","description":"","frontend_count":0,"id":"5f2946b3-84dd-40ff-adca-2e82916581ea","instances":[{"created_at":"2023-07-03T20:03:34.760252Z","id":"3a527f9c-37f6-4ad2-ba20-e06abab0f15d","ip_address":"10.64.112.55","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:04:40.690308Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"5f2946b3-84dd-40ff-adca-2e82916581ea","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:04:42.055825Z","zone":"fr-par-1"}' headers: Content-Length: - - "1095" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:38 GMT + - Mon, 03 Jul 2023 20:05:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -166,7 +166,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9f414e3-24b2-4fa6-ac94-35cd19da9075 + - 4d50fcab-3791-4358-8a04-682d462f6903 status: 200 OK code: 200 duration: "" @@ -177,19 +177,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/959a7590-c276-45a4-85e2-2ee89a6ca465 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5f2946b3-84dd-40ff-adca-2e82916581ea method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:24:08.326862Z","description":"","frontend_count":0,"id":"959a7590-c276-45a4-85e2-2ee89a6ca465","instances":[{"created_at":"2023-06-29T12:04:31.654274Z","id":"f36ad616-4fd3-4a45-84b8-6eb0ddbcb9c1","ip_address":"10.73.130.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:24:09.725737Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"959a7590-c276-45a4-85e2-2ee89a6ca465","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:24:10.741488Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:04:39.479112Z","description":"","frontend_count":0,"id":"5f2946b3-84dd-40ff-adca-2e82916581ea","instances":[{"created_at":"2023-07-03T20:03:34.760252Z","id":"3a527f9c-37f6-4ad2-ba20-e06abab0f15d","ip_address":"10.64.112.55","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:04:40.690308Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"5f2946b3-84dd-40ff-adca-2e82916581ea","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:04:42.055825Z","zone":"fr-par-1"}' headers: Content-Length: - - "1095" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:38 GMT + - Mon, 03 Jul 2023 20:05:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -199,7 +199,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ef52e86-3531-4122-96b6-215fe24dc8a7 + - db64ecd4-2493-47a1-b404-6b23b5b9c07a status: 200 OK code: 200 duration: "" @@ -210,19 +210,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/959a7590-c276-45a4-85e2-2ee89a6ca465/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5f2946b3-84dd-40ff-adca-2e82916581ea/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:38 GMT + - Mon, 03 Jul 2023 20:05:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -232,7 +232,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4266a19d-b7fb-44ef-b10c-79efc44fd89f + - f482e67c-4fa6-4961-af75-fe8cebb0e075 status: 200 OK code: 200 duration: "" @@ -243,19 +243,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/959a7590-c276-45a4-85e2-2ee89a6ca465 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5f2946b3-84dd-40ff-adca-2e82916581ea method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:24:08.326862Z","description":"","frontend_count":0,"id":"959a7590-c276-45a4-85e2-2ee89a6ca465","instances":[{"created_at":"2023-06-29T12:04:31.654274Z","id":"f36ad616-4fd3-4a45-84b8-6eb0ddbcb9c1","ip_address":"10.73.130.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:24:09.725737Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"959a7590-c276-45a4-85e2-2ee89a6ca465","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:24:10.741488Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:04:39.479112Z","description":"","frontend_count":0,"id":"5f2946b3-84dd-40ff-adca-2e82916581ea","instances":[{"created_at":"2023-07-03T20:03:34.760252Z","id":"3a527f9c-37f6-4ad2-ba20-e06abab0f15d","ip_address":"10.64.112.55","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:04:40.690308Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"5f2946b3-84dd-40ff-adca-2e82916581ea","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:04:42.055825Z","zone":"fr-par-1"}' headers: Content-Length: - - "1095" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:38 GMT + - Mon, 03 Jul 2023 20:05:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -265,12 +265,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36d356b1-ed20-4c3f-b7a3-673fdc247317 + - b056cff3-9360-4e65-93f8-c0e6232fa95e status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-bkd-naughty-roentgen","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":null,"check_delay":60000,"check_timeout":30000},"server_ip":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":null,"max_retries":3,"max_connections":null,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' + body: '{"name":"tf-lb-bkd-elated-swartz","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":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":null,"max_retries":3,"max_connections":null,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' form: {} headers: Content-Type: @@ -278,19 +278,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/959a7590-c276-45a4-85e2-2ee89a6ca465/backends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5f2946b3-84dd-40ff-adca-2e82916581ea/backends method: POST response: - body: '{"created_at":"2023-06-29T13:24:38.928853883Z","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":null},"id":"cf910923-b21e-4cb6-a786-da00420fc590","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:24:08.326862Z","description":"","frontend_count":0,"id":"959a7590-c276-45a4-85e2-2ee89a6ca465","instances":[{"created_at":"2023-06-29T12:04:31.654274Z","id":"f36ad616-4fd3-4a45-84b8-6eb0ddbcb9c1","ip_address":"10.73.130.133","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:24:38.957834867Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"959a7590-c276-45a4-85e2-2ee89a6ca465","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:24:10.741488Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-naughty-roentgen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:24:38.928853883Z"}' + body: '{"created_at":"2023-07-03T20:05:10.306680740Z","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":"f35dbde6-d95b-495e-8077-e4e1c7475896","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:04:39.479112Z","description":"","frontend_count":0,"id":"5f2946b3-84dd-40ff-adca-2e82916581ea","instances":[{"created_at":"2023-07-03T20:03:34.760252Z","id":"3a527f9c-37f6-4ad2-ba20-e06abab0f15d","ip_address":"10.64.112.55","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:05:10.343269300Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"5f2946b3-84dd-40ff-adca-2e82916581ea","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:04:42.055825Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-elated-swartz","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:05:10.306680740Z"}' headers: Content-Length: - - "1971" + - "1911" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:39 GMT + - Mon, 03 Jul 2023 20:05:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -300,7 +300,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 612e912b-b5ef-4802-ac77-66f923f28618 + - 81683db6-1894-4a64-a5d4-13e534ec0aad status: 200 OK code: 200 duration: "" @@ -311,19 +311,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/959a7590-c276-45a4-85e2-2ee89a6ca465 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5f2946b3-84dd-40ff-adca-2e82916581ea method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:24:08.326862Z","description":"","frontend_count":0,"id":"959a7590-c276-45a4-85e2-2ee89a6ca465","instances":[{"created_at":"2023-06-29T12:04:31.654274Z","id":"f36ad616-4fd3-4a45-84b8-6eb0ddbcb9c1","ip_address":"10.73.130.133","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:24:38.957835Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"959a7590-c276-45a4-85e2-2ee89a6ca465","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:24:10.741488Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:04:39.479112Z","description":"","frontend_count":0,"id":"5f2946b3-84dd-40ff-adca-2e82916581ea","instances":[{"created_at":"2023-07-03T20:03:34.760252Z","id":"3a527f9c-37f6-4ad2-ba20-e06abab0f15d","ip_address":"10.64.112.55","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:05:10.343269Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"5f2946b3-84dd-40ff-adca-2e82916581ea","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:04:42.055825Z","zone":"fr-par-1"}' headers: Content-Length: - - "1097" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:39 GMT + - Mon, 03 Jul 2023 20:05:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -333,7 +333,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11ce54e3-517a-4b90-88f9-06d72575f7e2 + - a9503785-f31b-44ab-93f2-59d7b64f0441 status: 200 OK code: 200 duration: "" @@ -344,19 +344,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/cf910923-b21e-4cb6-a786-da00420fc590 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f35dbde6-d95b-495e-8077-e4e1c7475896 method: GET response: - body: '{"created_at":"2023-06-29T13:24:38.928854Z","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":null},"id":"cf910923-b21e-4cb6-a786-da00420fc590","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:24:08.326862Z","description":"","frontend_count":0,"id":"959a7590-c276-45a4-85e2-2ee89a6ca465","instances":[{"created_at":"2023-06-29T12:04:31.654274Z","id":"f36ad616-4fd3-4a45-84b8-6eb0ddbcb9c1","ip_address":"10.73.130.133","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:24:38.957835Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"959a7590-c276-45a4-85e2-2ee89a6ca465","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:24:10.741488Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-naughty-roentgen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:24:38.928854Z"}' + body: '{"created_at":"2023-07-03T20:05:10.306681Z","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":"f35dbde6-d95b-495e-8077-e4e1c7475896","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:04:39.479112Z","description":"","frontend_count":0,"id":"5f2946b3-84dd-40ff-adca-2e82916581ea","instances":[{"created_at":"2023-07-03T20:03:34.760252Z","id":"3a527f9c-37f6-4ad2-ba20-e06abab0f15d","ip_address":"10.64.112.55","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:05:10.343269Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"5f2946b3-84dd-40ff-adca-2e82916581ea","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:04:42.055825Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-elated-swartz","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:05:10.306681Z"}' headers: Content-Length: - - "1962" + - "1902" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:39 GMT + - Mon, 03 Jul 2023 20:05:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -366,7 +366,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 966cc9aa-c72e-407a-bcfc-addc7e21a912 + - 93bd422d-e393-46c0-a91f-9f38d42231b3 status: 200 OK code: 200 duration: "" @@ -377,19 +377,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/959a7590-c276-45a4-85e2-2ee89a6ca465 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5f2946b3-84dd-40ff-adca-2e82916581ea method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:24:08.326862Z","description":"","frontend_count":0,"id":"959a7590-c276-45a4-85e2-2ee89a6ca465","instances":[{"created_at":"2023-06-29T12:04:31.654274Z","id":"f36ad616-4fd3-4a45-84b8-6eb0ddbcb9c1","ip_address":"10.73.130.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:24:39.279569Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"959a7590-c276-45a4-85e2-2ee89a6ca465","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:24:10.741488Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:04:39.479112Z","description":"","frontend_count":0,"id":"5f2946b3-84dd-40ff-adca-2e82916581ea","instances":[{"created_at":"2023-07-03T20:03:34.760252Z","id":"3a527f9c-37f6-4ad2-ba20-e06abab0f15d","ip_address":"10.64.112.55","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:05:10.626574Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"5f2946b3-84dd-40ff-adca-2e82916581ea","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:04:42.055825Z","zone":"fr-par-1"}' headers: Content-Length: - - "1095" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:39 GMT + - Mon, 03 Jul 2023 20:05:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -399,7 +399,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 91d25779-66a2-4aad-8932-4a6e68bd8e26 + - b7acd238-5170-4607-a392-6769d339dd26 status: 200 OK code: 200 duration: "" @@ -410,19 +410,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/959a7590-c276-45a4-85e2-2ee89a6ca465 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5f2946b3-84dd-40ff-adca-2e82916581ea method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:24:08.326862Z","description":"","frontend_count":0,"id":"959a7590-c276-45a4-85e2-2ee89a6ca465","instances":[{"created_at":"2023-06-29T12:04:31.654274Z","id":"f36ad616-4fd3-4a45-84b8-6eb0ddbcb9c1","ip_address":"10.73.130.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:24:39.279569Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"959a7590-c276-45a4-85e2-2ee89a6ca465","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:24:10.741488Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:04:39.479112Z","description":"","frontend_count":0,"id":"5f2946b3-84dd-40ff-adca-2e82916581ea","instances":[{"created_at":"2023-07-03T20:03:34.760252Z","id":"3a527f9c-37f6-4ad2-ba20-e06abab0f15d","ip_address":"10.64.112.55","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:05:10.626574Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"5f2946b3-84dd-40ff-adca-2e82916581ea","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:04:42.055825Z","zone":"fr-par-1"}' headers: Content-Length: - - "1095" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:39 GMT + - Mon, 03 Jul 2023 20:05:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -432,12 +432,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48690e53-c005-4aa3-9ac4-633940f382ae + - 9eca5398-9f34-4bc2-869a-4c28a068ed9f status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-frt-pensive-bhabha","inbound_port":80,"backend_id":"cf910923-b21e-4cb6-a786-da00420fc590","certificate_ids":null,"enable_http3":false,"timeout_client":null}' + body: '{"name":"tf-lb-frt-gallant-roentgen","inbound_port":80,"backend_id":"f35dbde6-d95b-495e-8077-e4e1c7475896","certificate_ids":null,"enable_http3":false,"timeout_client":null}' form: {} headers: Content-Type: @@ -445,19 +445,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/959a7590-c276-45a4-85e2-2ee89a6ca465/frontends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5f2946b3-84dd-40ff-adca-2e82916581ea/frontends method: POST response: - body: '{"backend":{"created_at":"2023-06-29T13:24:38.928854Z","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":null},"id":"cf910923-b21e-4cb6-a786-da00420fc590","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:24:08.326862Z","description":"","frontend_count":1,"id":"959a7590-c276-45a4-85e2-2ee89a6ca465","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"959a7590-c276-45a4-85e2-2ee89a6ca465","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:24:10.741488Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-naughty-roentgen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:24:38.928854Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:24:39.590747Z","enable_http3":false,"id":"0063822f-30bf-4a71-b67e-7297f0ba631f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:24:08.326862Z","description":"","frontend_count":1,"id":"959a7590-c276-45a4-85e2-2ee89a6ca465","instances":[{"created_at":"2023-06-29T12:04:31.654274Z","id":"f36ad616-4fd3-4a45-84b8-6eb0ddbcb9c1","ip_address":"10.73.130.133","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:24:39.648221913Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"959a7590-c276-45a4-85e2-2ee89a6ca465","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:24:10.741488Z","zone":"fr-par-1"},"name":"tf-lb-frt-pensive-bhabha","timeout_client":null,"updated_at":"2023-06-29T13:24:39.590747Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:05:10.306681Z","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":"f35dbde6-d95b-495e-8077-e4e1c7475896","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:04:39.479112Z","description":"","frontend_count":1,"id":"5f2946b3-84dd-40ff-adca-2e82916581ea","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"5f2946b3-84dd-40ff-adca-2e82916581ea","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:04:42.055825Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-elated-swartz","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:05:10.306681Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:05:11.037774Z","enable_http3":false,"id":"030d9602-db27-4db1-9543-cfabde93830b","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:04:39.479112Z","description":"","frontend_count":1,"id":"5f2946b3-84dd-40ff-adca-2e82916581ea","instances":[{"created_at":"2023-07-03T20:03:34.760252Z","id":"3a527f9c-37f6-4ad2-ba20-e06abab0f15d","ip_address":"10.64.112.55","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:05:11.108543516Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"5f2946b3-84dd-40ff-adca-2e82916581ea","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:04:42.055825Z","zone":"fr-par-1"},"name":"tf-lb-frt-gallant-roentgen","timeout_client":null,"updated_at":"2023-07-03T20:05:11.037774Z"}' headers: Content-Length: - - "3134" + - "3042" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:39 GMT + - Mon, 03 Jul 2023 20:05:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -467,7 +467,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 409c4156-2ef5-47e1-af11-299d83f26eac + - 871c942e-af76-4df6-ab3d-404e7db47d0c status: 200 OK code: 200 duration: "" @@ -478,19 +478,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/959a7590-c276-45a4-85e2-2ee89a6ca465 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5f2946b3-84dd-40ff-adca-2e82916581ea method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:24:08.326862Z","description":"","frontend_count":1,"id":"959a7590-c276-45a4-85e2-2ee89a6ca465","instances":[{"created_at":"2023-06-29T12:04:31.654274Z","id":"f36ad616-4fd3-4a45-84b8-6eb0ddbcb9c1","ip_address":"10.73.130.133","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:24:39.648222Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"959a7590-c276-45a4-85e2-2ee89a6ca465","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:24:10.741488Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:04:39.479112Z","description":"","frontend_count":1,"id":"5f2946b3-84dd-40ff-adca-2e82916581ea","instances":[{"created_at":"2023-07-03T20:03:34.760252Z","id":"3a527f9c-37f6-4ad2-ba20-e06abab0f15d","ip_address":"10.64.112.55","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:05:11.108544Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"5f2946b3-84dd-40ff-adca-2e82916581ea","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:04:42.055825Z","zone":"fr-par-1"}' headers: Content-Length: - - "1097" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:39 GMT + - Mon, 03 Jul 2023 20:05:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -500,12 +500,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 740a93ef-3118-42a8-805a-e23a1efef219 + - 4a35dd00-0b2a-4764-83ef-9c15bcb0e14a status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-frt-loving-moser","inbound_port":80,"backend_id":"cf910923-b21e-4cb6-a786-da00420fc590","certificate_ids":null,"enable_http3":false,"timeout_client":null}' + body: '{"name":"tf-lb-frt-friendly-mendeleev","inbound_port":80,"backend_id":"f35dbde6-d95b-495e-8077-e4e1c7475896","certificate_ids":null,"enable_http3":false,"timeout_client":null}' form: {} headers: Content-Type: @@ -513,19 +513,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/0063822f-30bf-4a71-b67e-7297f0ba631f + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/030d9602-db27-4db1-9543-cfabde93830b method: PUT response: - body: '{"backend":{"created_at":"2023-06-29T13:24:38.928854Z","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":null},"id":"cf910923-b21e-4cb6-a786-da00420fc590","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:24:08.326862Z","description":"","frontend_count":1,"id":"959a7590-c276-45a4-85e2-2ee89a6ca465","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"959a7590-c276-45a4-85e2-2ee89a6ca465","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:24:10.741488Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-naughty-roentgen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:24:38.928854Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:24:39.590747Z","enable_http3":false,"id":"0063822f-30bf-4a71-b67e-7297f0ba631f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:24:08.326862Z","description":"","frontend_count":1,"id":"959a7590-c276-45a4-85e2-2ee89a6ca465","instances":[{"created_at":"2023-06-29T12:04:31.654274Z","id":"f36ad616-4fd3-4a45-84b8-6eb0ddbcb9c1","ip_address":"10.73.130.133","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:24:40.056711489Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"959a7590-c276-45a4-85e2-2ee89a6ca465","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:24:10.741488Z","zone":"fr-par-1"},"name":"tf-lb-frt-loving-moser","timeout_client":null,"updated_at":"2023-06-29T13:24:40.031602132Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:05:10.306681Z","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":"f35dbde6-d95b-495e-8077-e4e1c7475896","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:04:39.479112Z","description":"","frontend_count":1,"id":"5f2946b3-84dd-40ff-adca-2e82916581ea","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"5f2946b3-84dd-40ff-adca-2e82916581ea","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:04:42.055825Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-elated-swartz","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:05:10.306681Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:05:11.037774Z","enable_http3":false,"id":"030d9602-db27-4db1-9543-cfabde93830b","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:04:39.479112Z","description":"","frontend_count":1,"id":"5f2946b3-84dd-40ff-adca-2e82916581ea","instances":[{"created_at":"2023-07-03T20:03:34.760252Z","id":"3a527f9c-37f6-4ad2-ba20-e06abab0f15d","ip_address":"10.64.112.55","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:05:11.524710028Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"5f2946b3-84dd-40ff-adca-2e82916581ea","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:04:42.055825Z","zone":"fr-par-1"},"name":"tf-lb-frt-friendly-mendeleev","timeout_client":null,"updated_at":"2023-07-03T20:05:11.497439368Z"}' headers: Content-Length: - - "3135" + - "3047" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:40 GMT + - Mon, 03 Jul 2023 20:05:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -535,7 +535,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5891349f-f2c4-4d08-b04e-ca10362f81dd + - 6ae31c10-2cac-4e93-9704-b33540be8da2 status: 200 OK code: 200 duration: "" @@ -546,19 +546,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/0063822f-30bf-4a71-b67e-7297f0ba631f/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/030d9602-db27-4db1-9543-cfabde93830b/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:40 GMT + - Mon, 03 Jul 2023 20:05:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -568,7 +568,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54b5026a-6d3c-489e-ae6c-86ef3f1e40f1 + - 598b66bb-a3c7-4d56-8898-7d2111121809 status: 200 OK code: 200 duration: "" @@ -579,19 +579,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/0063822f-30bf-4a71-b67e-7297f0ba631f + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/030d9602-db27-4db1-9543-cfabde93830b method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:24:38.928854Z","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":null},"id":"cf910923-b21e-4cb6-a786-da00420fc590","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:24:08.326862Z","description":"","frontend_count":1,"id":"959a7590-c276-45a4-85e2-2ee89a6ca465","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"959a7590-c276-45a4-85e2-2ee89a6ca465","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:24:10.741488Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-naughty-roentgen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:24:38.928854Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:24:39.590747Z","enable_http3":false,"id":"0063822f-30bf-4a71-b67e-7297f0ba631f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:24:08.326862Z","description":"","frontend_count":1,"id":"959a7590-c276-45a4-85e2-2ee89a6ca465","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"959a7590-c276-45a4-85e2-2ee89a6ca465","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:24:10.741488Z","zone":"fr-par-1"},"name":"tf-lb-frt-loving-moser","timeout_client":null,"updated_at":"2023-06-29T13:24:40.031602Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:05:10.306681Z","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":"f35dbde6-d95b-495e-8077-e4e1c7475896","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:04:39.479112Z","description":"","frontend_count":1,"id":"5f2946b3-84dd-40ff-adca-2e82916581ea","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"5f2946b3-84dd-40ff-adca-2e82916581ea","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:04:42.055825Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-elated-swartz","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:05:10.306681Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:05:11.037774Z","enable_http3":false,"id":"030d9602-db27-4db1-9543-cfabde93830b","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:04:39.479112Z","description":"","frontend_count":1,"id":"5f2946b3-84dd-40ff-adca-2e82916581ea","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"5f2946b3-84dd-40ff-adca-2e82916581ea","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:04:42.055825Z","zone":"fr-par-1"},"name":"tf-lb-frt-friendly-mendeleev","timeout_client":null,"updated_at":"2023-07-03T20:05:11.497439Z"}' headers: Content-Length: - - "2908" + - "2827" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:40 GMT + - Mon, 03 Jul 2023 20:05:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -601,7 +601,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17d24882-905c-4a1b-b543-0984f0076689 + - 5ead9a10-75a3-4a2a-b99b-3e318a04bbf1 status: 200 OK code: 200 duration: "" @@ -612,19 +612,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/0063822f-30bf-4a71-b67e-7297f0ba631f/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/030d9602-db27-4db1-9543-cfabde93830b/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:40 GMT + - Mon, 03 Jul 2023 20:05:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -634,12 +634,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1a25f24-b24c-47b4-99f2-7236e6c1fdbd + - 7b413c19-30d5-43de-9666-3404a4044ae4 status: 200 OK code: 200 duration: "" - request: - body: '{"frontend_id":"0063822f-30bf-4a71-b67e-7297f0ba631f","backend_id":"cf910923-b21e-4cb6-a786-da00420fc590","match":{"sni":"sni.scaleway.com"}}' + body: '{"frontend_id":"030d9602-db27-4db1-9543-cfabde93830b","backend_id":"f35dbde6-d95b-495e-8077-e4e1c7475896","match":{"sni":"sni.scaleway.com"}}' form: {} headers: Content-Type: @@ -650,16 +650,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes method: POST response: - body: '{"backend_id":"cf910923-b21e-4cb6-a786-da00420fc590","created_at":"2023-06-29T13:24:40.587986949Z","frontend_id":"0063822f-30bf-4a71-b67e-7297f0ba631f","id":"394bbd09-1de3-40ee-a638-547cd489ae6b","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-06-29T13:24:40.587986949Z"}' + body: '{"backend_id":"f35dbde6-d95b-495e-8077-e4e1c7475896","created_at":"2023-07-03T20:05:12.147578995Z","frontend_id":"030d9602-db27-4db1-9543-cfabde93830b","id":"0ab8b995-1cfc-4d4b-b423-e56d58b609ca","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-07-03T20:05:12.147578995Z"}' headers: Content-Length: - - "282" + - "277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:40 GMT + - Mon, 03 Jul 2023 20:05:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -669,7 +669,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f2e2bbd-877e-40ff-980f-f8346b550f78 + - 28893d97-c492-49ed-a914-29e7c5e51230 status: 200 OK code: 200 duration: "" @@ -680,19 +680,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/394bbd09-1de3-40ee-a638-547cd489ae6b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/0ab8b995-1cfc-4d4b-b423-e56d58b609ca method: GET response: - body: '{"backend_id":"cf910923-b21e-4cb6-a786-da00420fc590","created_at":"2023-06-29T13:24:40.587987Z","frontend_id":"0063822f-30bf-4a71-b67e-7297f0ba631f","id":"394bbd09-1de3-40ee-a638-547cd489ae6b","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-06-29T13:24:40.587987Z"}' + body: '{"backend_id":"f35dbde6-d95b-495e-8077-e4e1c7475896","created_at":"2023-07-03T20:05:12.147579Z","frontend_id":"030d9602-db27-4db1-9543-cfabde93830b","id":"0ab8b995-1cfc-4d4b-b423-e56d58b609ca","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-07-03T20:05:12.147579Z"}' headers: Content-Length: - - "276" + - "271" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:40 GMT + - Mon, 03 Jul 2023 20:05:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -702,7 +702,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7728b930-1fb8-4538-b35f-1b0144d2c4c2 + - 6e90fe6c-77ab-4e89-98ff-7349082c4736 status: 200 OK code: 200 duration: "" @@ -713,19 +713,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/394bbd09-1de3-40ee-a638-547cd489ae6b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/0ab8b995-1cfc-4d4b-b423-e56d58b609ca method: GET response: - body: '{"backend_id":"cf910923-b21e-4cb6-a786-da00420fc590","created_at":"2023-06-29T13:24:40.587987Z","frontend_id":"0063822f-30bf-4a71-b67e-7297f0ba631f","id":"394bbd09-1de3-40ee-a638-547cd489ae6b","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-06-29T13:24:40.587987Z"}' + body: '{"backend_id":"f35dbde6-d95b-495e-8077-e4e1c7475896","created_at":"2023-07-03T20:05:12.147579Z","frontend_id":"030d9602-db27-4db1-9543-cfabde93830b","id":"0ab8b995-1cfc-4d4b-b423-e56d58b609ca","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-07-03T20:05:12.147579Z"}' headers: Content-Length: - - "276" + - "271" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:41 GMT + - Mon, 03 Jul 2023 20:05:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -735,7 +735,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e92306a9-48e9-4e64-8951-991907099d94 + - 86e2b8db-3779-47b3-babc-7d90989421b2 status: 200 OK code: 200 duration: "" @@ -746,19 +746,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c6b47cd5-7fca-4acc-bde4-e32e91f58310 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"959a7590-c276-45a4-85e2-2ee89a6ca465","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"5f2946b3-84dd-40ff-adca-2e82916581ea","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "321" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:41 GMT + - Mon, 03 Jul 2023 20:05:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -768,7 +768,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 793cd736-4c6b-4121-947d-d87bd34c84f3 + - 3d072c58-25fb-4020-bf92-c4634221bbbe status: 200 OK code: 200 duration: "" @@ -779,19 +779,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/959a7590-c276-45a4-85e2-2ee89a6ca465 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5f2946b3-84dd-40ff-adca-2e82916581ea method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:24:08.326862Z","description":"","frontend_count":1,"id":"959a7590-c276-45a4-85e2-2ee89a6ca465","instances":[{"created_at":"2023-06-29T12:04:31.654274Z","id":"f36ad616-4fd3-4a45-84b8-6eb0ddbcb9c1","ip_address":"10.73.130.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:24:41.026009Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"959a7590-c276-45a4-85e2-2ee89a6ca465","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:24:10.741488Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:04:39.479112Z","description":"","frontend_count":1,"id":"5f2946b3-84dd-40ff-adca-2e82916581ea","instances":[{"created_at":"2023-07-03T20:03:34.760252Z","id":"3a527f9c-37f6-4ad2-ba20-e06abab0f15d","ip_address":"10.64.112.55","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:05:12.503876Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"5f2946b3-84dd-40ff-adca-2e82916581ea","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:04:42.055825Z","zone":"fr-par-1"}' headers: Content-Length: - - "1095" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:41 GMT + - Mon, 03 Jul 2023 20:05:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -801,7 +801,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cfd45713-62bd-4e1d-8198-120c8166d397 + - d7ac45f3-f7b9-4ca2-9905-b1c95e81e2ad status: 200 OK code: 200 duration: "" @@ -812,19 +812,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/959a7590-c276-45a4-85e2-2ee89a6ca465 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5f2946b3-84dd-40ff-adca-2e82916581ea method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:24:08.326862Z","description":"","frontend_count":1,"id":"959a7590-c276-45a4-85e2-2ee89a6ca465","instances":[{"created_at":"2023-06-29T12:04:31.654274Z","id":"f36ad616-4fd3-4a45-84b8-6eb0ddbcb9c1","ip_address":"10.73.130.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:24:41.026009Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"959a7590-c276-45a4-85e2-2ee89a6ca465","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:24:10.741488Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:04:39.479112Z","description":"","frontend_count":1,"id":"5f2946b3-84dd-40ff-adca-2e82916581ea","instances":[{"created_at":"2023-07-03T20:03:34.760252Z","id":"3a527f9c-37f6-4ad2-ba20-e06abab0f15d","ip_address":"10.64.112.55","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:05:12.503876Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"5f2946b3-84dd-40ff-adca-2e82916581ea","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:04:42.055825Z","zone":"fr-par-1"}' headers: Content-Length: - - "1095" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:41 GMT + - Mon, 03 Jul 2023 20:05:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -834,7 +834,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b84f429d-d137-4c76-94d1-6b751f9a27a0 + - 44db1093-92bd-4ad6-867c-19e305d56228 status: 200 OK code: 200 duration: "" @@ -845,19 +845,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/959a7590-c276-45a4-85e2-2ee89a6ca465/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5f2946b3-84dd-40ff-adca-2e82916581ea/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:41 GMT + - Mon, 03 Jul 2023 20:05:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -867,7 +867,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 788fcb0d-40b2-4204-a1f5-408b5075ba26 + - 4db4fb25-60ad-4edc-a021-c3d9fee2773a status: 200 OK code: 200 duration: "" @@ -878,19 +878,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/cf910923-b21e-4cb6-a786-da00420fc590 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f35dbde6-d95b-495e-8077-e4e1c7475896 method: GET response: - body: '{"created_at":"2023-06-29T13:24:38.928854Z","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":null},"id":"cf910923-b21e-4cb6-a786-da00420fc590","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:24:08.326862Z","description":"","frontend_count":1,"id":"959a7590-c276-45a4-85e2-2ee89a6ca465","instances":[{"created_at":"2023-06-29T12:04:31.654274Z","id":"f36ad616-4fd3-4a45-84b8-6eb0ddbcb9c1","ip_address":"10.73.130.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:24:41.026009Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"959a7590-c276-45a4-85e2-2ee89a6ca465","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:24:10.741488Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-naughty-roentgen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:24:38.928854Z"}' + body: '{"created_at":"2023-07-03T20:05:10.306681Z","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":"f35dbde6-d95b-495e-8077-e4e1c7475896","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:04:39.479112Z","description":"","frontend_count":1,"id":"5f2946b3-84dd-40ff-adca-2e82916581ea","instances":[{"created_at":"2023-07-03T20:03:34.760252Z","id":"3a527f9c-37f6-4ad2-ba20-e06abab0f15d","ip_address":"10.64.112.55","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:05:12.503876Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"5f2946b3-84dd-40ff-adca-2e82916581ea","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:04:42.055825Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-elated-swartz","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:05:10.306681Z"}' headers: Content-Length: - - "1960" + - "1900" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:41 GMT + - Mon, 03 Jul 2023 20:05:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -900,7 +900,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd4676fa-0b31-48ae-8097-c73ac7145a2f + - ea7b0c8a-4231-4942-9a60-7af8d09c69c9 status: 200 OK code: 200 duration: "" @@ -911,19 +911,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/959a7590-c276-45a4-85e2-2ee89a6ca465 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5f2946b3-84dd-40ff-adca-2e82916581ea method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:24:08.326862Z","description":"","frontend_count":1,"id":"959a7590-c276-45a4-85e2-2ee89a6ca465","instances":[{"created_at":"2023-06-29T12:04:31.654274Z","id":"f36ad616-4fd3-4a45-84b8-6eb0ddbcb9c1","ip_address":"10.73.130.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:24:41.026009Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"959a7590-c276-45a4-85e2-2ee89a6ca465","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:24:10.741488Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:04:39.479112Z","description":"","frontend_count":1,"id":"5f2946b3-84dd-40ff-adca-2e82916581ea","instances":[{"created_at":"2023-07-03T20:03:34.760252Z","id":"3a527f9c-37f6-4ad2-ba20-e06abab0f15d","ip_address":"10.64.112.55","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:05:12.503876Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"5f2946b3-84dd-40ff-adca-2e82916581ea","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:04:42.055825Z","zone":"fr-par-1"}' headers: Content-Length: - - "1095" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:41 GMT + - Mon, 03 Jul 2023 20:05:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -933,7 +933,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61cdc40c-1aee-466b-92d0-9650417ef36f + - 17827695-03db-48ac-8c1c-06746267465b status: 200 OK code: 200 duration: "" @@ -944,19 +944,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/0063822f-30bf-4a71-b67e-7297f0ba631f + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/030d9602-db27-4db1-9543-cfabde93830b method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:24:38.928854Z","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":null},"id":"cf910923-b21e-4cb6-a786-da00420fc590","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:24:08.326862Z","description":"","frontend_count":1,"id":"959a7590-c276-45a4-85e2-2ee89a6ca465","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"959a7590-c276-45a4-85e2-2ee89a6ca465","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:24:10.741488Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-naughty-roentgen","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:24:38.928854Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:24:39.590747Z","enable_http3":false,"id":"0063822f-30bf-4a71-b67e-7297f0ba631f","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:24:08.326862Z","description":"","frontend_count":1,"id":"959a7590-c276-45a4-85e2-2ee89a6ca465","instances":[],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"959a7590-c276-45a4-85e2-2ee89a6ca465","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:24:10.741488Z","zone":"fr-par-1"},"name":"tf-lb-frt-loving-moser","timeout_client":null,"updated_at":"2023-06-29T13:24:40.031602Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:05:10.306681Z","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":"f35dbde6-d95b-495e-8077-e4e1c7475896","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:04:39.479112Z","description":"","frontend_count":1,"id":"5f2946b3-84dd-40ff-adca-2e82916581ea","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"5f2946b3-84dd-40ff-adca-2e82916581ea","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:04:42.055825Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-elated-swartz","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:05:10.306681Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:05:11.037774Z","enable_http3":false,"id":"030d9602-db27-4db1-9543-cfabde93830b","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:04:39.479112Z","description":"","frontend_count":1,"id":"5f2946b3-84dd-40ff-adca-2e82916581ea","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"5f2946b3-84dd-40ff-adca-2e82916581ea","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":1,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:04:42.055825Z","zone":"fr-par-1"},"name":"tf-lb-frt-friendly-mendeleev","timeout_client":null,"updated_at":"2023-07-03T20:05:11.497439Z"}' headers: Content-Length: - - "2908" + - "2827" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:41 GMT + - Mon, 03 Jul 2023 20:05:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -966,7 +966,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d057357-7911-4e0a-b693-25d276982e75 + - 68919959-ac77-418d-bbab-c054ee3b1035 status: 200 OK code: 200 duration: "" @@ -977,19 +977,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/0063822f-30bf-4a71-b67e-7297f0ba631f/acls?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/030d9602-db27-4db1-9543-cfabde93830b/acls?order_by=created_at_asc&page=1 method: GET response: body: '{"acls":[],"total_count":0}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:41 GMT + - Mon, 03 Jul 2023 20:05:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -999,7 +999,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2556850-5192-45fe-a7fa-f1cde20c6e79 + - d628ce1b-ea3d-4f1f-994d-c109082fa066 status: 200 OK code: 200 duration: "" @@ -1010,19 +1010,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/394bbd09-1de3-40ee-a638-547cd489ae6b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/0ab8b995-1cfc-4d4b-b423-e56d58b609ca method: GET response: - body: '{"backend_id":"cf910923-b21e-4cb6-a786-da00420fc590","created_at":"2023-06-29T13:24:40.587987Z","frontend_id":"0063822f-30bf-4a71-b67e-7297f0ba631f","id":"394bbd09-1de3-40ee-a638-547cd489ae6b","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-06-29T13:24:40.587987Z"}' + body: '{"backend_id":"f35dbde6-d95b-495e-8077-e4e1c7475896","created_at":"2023-07-03T20:05:12.147579Z","frontend_id":"030d9602-db27-4db1-9543-cfabde93830b","id":"0ab8b995-1cfc-4d4b-b423-e56d58b609ca","match":{"sni":"sni.scaleway.com"},"updated_at":"2023-07-03T20:05:12.147579Z"}' headers: Content-Length: - - "276" + - "271" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:42 GMT + - Mon, 03 Jul 2023 20:05:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1032,7 +1032,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cbf76a36-6d9a-4da5-856f-7410283fd0c6 + - 7ee3e495-af53-40d5-9abb-d5c1104cbde2 status: 200 OK code: 200 duration: "" @@ -1043,7 +1043,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/394bbd09-1de3-40ee-a638-547cd489ae6b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/0ab8b995-1cfc-4d4b-b423-e56d58b609ca method: DELETE response: body: "" @@ -1053,7 +1053,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:42 GMT + - Mon, 03 Jul 2023 20:05:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1063,7 +1063,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 558c1871-13d1-486b-a465-bcd39c372411 + - f4b295d6-6597-4ab1-8656-8c9fe0e097c4 status: 204 No Content code: 204 duration: "" @@ -1074,7 +1074,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/0063822f-30bf-4a71-b67e-7297f0ba631f + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/030d9602-db27-4db1-9543-cfabde93830b method: DELETE response: body: "" @@ -1084,7 +1084,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:43 GMT + - Mon, 03 Jul 2023 20:05:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1094,7 +1094,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d701529-a2d1-43ee-b135-1dd430535c5a + - 7c886cb0-d574-4719-b13b-420767e7ec49 status: 204 No Content code: 204 duration: "" @@ -1105,19 +1105,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/959a7590-c276-45a4-85e2-2ee89a6ca465 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5f2946b3-84dd-40ff-adca-2e82916581ea method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:24:08.326862Z","description":"","frontend_count":0,"id":"959a7590-c276-45a4-85e2-2ee89a6ca465","instances":[{"created_at":"2023-06-29T12:04:31.654274Z","id":"f36ad616-4fd3-4a45-84b8-6eb0ddbcb9c1","ip_address":"10.73.130.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:24:42.920180Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"959a7590-c276-45a4-85e2-2ee89a6ca465","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:24:10.741488Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:04:39.479112Z","description":"","frontend_count":0,"id":"5f2946b3-84dd-40ff-adca-2e82916581ea","instances":[{"created_at":"2023-07-03T20:03:34.760252Z","id":"3a527f9c-37f6-4ad2-ba20-e06abab0f15d","ip_address":"10.64.112.55","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:05:14.726732Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"5f2946b3-84dd-40ff-adca-2e82916581ea","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:04:42.055825Z","zone":"fr-par-1"}' headers: Content-Length: - - "1095" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:43 GMT + - Mon, 03 Jul 2023 20:05:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1127,7 +1127,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e99411f-5ec8-4786-bb8f-7f282cbcae89 + - c38ff902-bc4c-437f-b8ab-4dc9ad57edc2 status: 200 OK code: 200 duration: "" @@ -1138,19 +1138,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/959a7590-c276-45a4-85e2-2ee89a6ca465 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5f2946b3-84dd-40ff-adca-2e82916581ea method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:24:08.326862Z","description":"","frontend_count":0,"id":"959a7590-c276-45a4-85e2-2ee89a6ca465","instances":[{"created_at":"2023-06-29T12:04:31.654274Z","id":"f36ad616-4fd3-4a45-84b8-6eb0ddbcb9c1","ip_address":"10.73.130.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:24:42.920180Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"959a7590-c276-45a4-85e2-2ee89a6ca465","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:24:10.741488Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:04:39.479112Z","description":"","frontend_count":0,"id":"5f2946b3-84dd-40ff-adca-2e82916581ea","instances":[{"created_at":"2023-07-03T20:03:34.760252Z","id":"3a527f9c-37f6-4ad2-ba20-e06abab0f15d","ip_address":"10.64.112.55","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:05:14.975314Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"5f2946b3-84dd-40ff-adca-2e82916581ea","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:04:42.055825Z","zone":"fr-par-1"}' headers: Content-Length: - - "1095" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:43 GMT + - Mon, 03 Jul 2023 20:05:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1160,7 +1160,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 157a6cde-c1e8-4ee7-923b-ab95924535d1 + - 94cffe8b-2d55-478b-8e54-4989f23f5e70 status: 200 OK code: 200 duration: "" @@ -1171,7 +1171,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/cf910923-b21e-4cb6-a786-da00420fc590 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f35dbde6-d95b-495e-8077-e4e1c7475896 method: DELETE response: body: "" @@ -1181,7 +1181,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:43 GMT + - Mon, 03 Jul 2023 20:05:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1191,7 +1191,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5eb579d9-dd62-431b-ad51-d2242d3cd300 + - 06cc6e0e-60c8-4d8d-9525-51d2f1ac7fcd status: 204 No Content code: 204 duration: "" @@ -1202,19 +1202,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/959a7590-c276-45a4-85e2-2ee89a6ca465 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5f2946b3-84dd-40ff-adca-2e82916581ea method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:24:08.326862Z","description":"","frontend_count":0,"id":"959a7590-c276-45a4-85e2-2ee89a6ca465","instances":[{"created_at":"2023-06-29T12:04:31.654274Z","id":"f36ad616-4fd3-4a45-84b8-6eb0ddbcb9c1","ip_address":"10.73.130.133","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:24:43.331518Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"959a7590-c276-45a4-85e2-2ee89a6ca465","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:24:10.741488Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:04:39.479112Z","description":"","frontend_count":0,"id":"5f2946b3-84dd-40ff-adca-2e82916581ea","instances":[{"created_at":"2023-07-03T20:03:34.760252Z","id":"3a527f9c-37f6-4ad2-ba20-e06abab0f15d","ip_address":"10.64.112.55","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:05:15.216974Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"5f2946b3-84dd-40ff-adca-2e82916581ea","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:04:42.055825Z","zone":"fr-par-1"}' headers: Content-Length: - - "1097" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:43 GMT + - Mon, 03 Jul 2023 20:05:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1224,7 +1224,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f37b84d3-790c-4e0e-a9e1-013edd57e30a + - a1ac7666-5925-4c4f-98b8-b5f4c778c0a2 status: 200 OK code: 200 duration: "" @@ -1235,19 +1235,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/959a7590-c276-45a4-85e2-2ee89a6ca465 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5f2946b3-84dd-40ff-adca-2e82916581ea method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:24:08.326862Z","description":"","frontend_count":0,"id":"959a7590-c276-45a4-85e2-2ee89a6ca465","instances":[{"created_at":"2023-06-29T12:04:31.654274Z","id":"f36ad616-4fd3-4a45-84b8-6eb0ddbcb9c1","ip_address":"10.73.130.133","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:24:43.331518Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"959a7590-c276-45a4-85e2-2ee89a6ca465","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:24:10.741488Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:04:39.479112Z","description":"","frontend_count":0,"id":"5f2946b3-84dd-40ff-adca-2e82916581ea","instances":[{"created_at":"2023-07-03T20:03:34.760252Z","id":"3a527f9c-37f6-4ad2-ba20-e06abab0f15d","ip_address":"10.64.112.55","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:05:15.216974Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"5f2946b3-84dd-40ff-adca-2e82916581ea","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:04:42.055825Z","zone":"fr-par-1"}' headers: Content-Length: - - "1097" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:43 GMT + - Mon, 03 Jul 2023 20:05:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1257,7 +1257,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5e45973-a021-4e9d-823b-112e46c4900b + - e9cf9da2-be9f-45de-80fe-55ae2633761e status: 200 OK code: 200 duration: "" @@ -1268,7 +1268,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/959a7590-c276-45a4-85e2-2ee89a6ca465?release_ip=false + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5f2946b3-84dd-40ff-adca-2e82916581ea?release_ip=false method: DELETE response: body: "" @@ -1278,7 +1278,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:43 GMT + - Mon, 03 Jul 2023 20:05:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1288,7 +1288,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7bdf1ff3-882d-4e48-9050-ffd31b26b587 + - 0d5ff589-fac3-4f3c-adf0-55c8d18a181a status: 204 No Content code: 204 duration: "" @@ -1299,19 +1299,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/959a7590-c276-45a4-85e2-2ee89a6ca465 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5f2946b3-84dd-40ff-adca-2e82916581ea method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:24:08.326862Z","description":"","frontend_count":0,"id":"959a7590-c276-45a4-85e2-2ee89a6ca465","instances":[{"created_at":"2023-06-29T12:04:31.654274Z","id":"f36ad616-4fd3-4a45-84b8-6eb0ddbcb9c1","ip_address":"10.73.130.133","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:24:43.603303Z","zone":"fr-par-1"}],"ip":[{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":"959a7590-c276-45a4-85e2-2ee89a6ca465","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","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":"2023-06-29T13:24:43.679531Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:04:39.479112Z","description":"","frontend_count":0,"id":"5f2946b3-84dd-40ff-adca-2e82916581ea","instances":[{"created_at":"2023-07-03T20:03:34.760252Z","id":"3a527f9c-37f6-4ad2-ba20-e06abab0f15d","ip_address":"10.64.112.55","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:05:15.482371Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"5f2946b3-84dd-40ff-adca-2e82916581ea","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","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":"2023-07-03T20:05:15.596530Z","zone":"fr-par-1"}' headers: Content-Length: - - "1099" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:24:43 GMT + - Mon, 03 Jul 2023 20:05:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1321,7 +1321,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5499344f-62c2-4d68-952c-b3f91822088e + - 6ec657e6-60a6-4235-b636-2cb7d3ba50fa status: 200 OK code: 200 duration: "" @@ -1332,7 +1332,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/959a7590-c276-45a4-85e2-2ee89a6ca465 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5f2946b3-84dd-40ff-adca-2e82916581ea method: GET response: body: '{"message":"lbs not Found"}' @@ -1344,7 +1344,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:13 GMT + - Mon, 03 Jul 2023 20:05:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1354,7 +1354,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6bce8fb-214d-40ac-8cb2-b1c11d710536 + - 3f8c799e-fe6f-4237-a39c-406887d7ffa0 status: 404 Not Found code: 404 duration: "" @@ -1365,7 +1365,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/959a7590-c276-45a4-85e2-2ee89a6ca465 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/5f2946b3-84dd-40ff-adca-2e82916581ea method: GET response: body: '{"message":"lbs not Found"}' @@ -1377,7 +1377,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:13 GMT + - Mon, 03 Jul 2023 20:05:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1387,7 +1387,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - edc8ba29-c59b-405b-9501-31aeddb0aa68 + - 62d2117b-8618-4146-aeb1-d29ef205eff8 status: 404 Not Found code: 404 duration: "" @@ -1398,19 +1398,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c6b47cd5-7fca-4acc-bde4-e32e91f58310 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"c6b47cd5-7fca-4acc-bde4-e32e91f58310","ip_address":"195.154.70.160","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-70-160.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "287" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:14 GMT + - Mon, 03 Jul 2023 20:05:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1420,7 +1420,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47ac6794-37eb-4506-8e14-9fd3ab9e42c1 + - 2b6b30f4-0ffe-44ed-91c4-b9f77f34cfaf status: 200 OK code: 200 duration: "" @@ -1431,7 +1431,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c6b47cd5-7fca-4acc-bde4-e32e91f58310 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: DELETE response: body: "" @@ -1441,7 +1441,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:15 GMT + - Mon, 03 Jul 2023 20:05:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1451,7 +1451,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f39c5aa-5ebf-48a0-b393-a6d662118fea + - 5c5f32e9-f0bb-4d93-8e1b-1206f57468f6 status: 204 No Content code: 204 duration: "" @@ -1462,7 +1462,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/394bbd09-1de3-40ee-a638-547cd489ae6b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/routes/0ab8b995-1cfc-4d4b-b423-e56d58b609ca method: GET response: body: '{"message":"privateNetwork not Found"}' @@ -1474,7 +1474,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:25:15 GMT + - Mon, 03 Jul 2023 20:05:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1484,7 +1484,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ebaad98a-1533-497e-8137-bfc9f903448d + - 1913f653-7d08-47b6-addb-4d54e75d79ac status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/lbacl-basic.cassette.yaml b/scaleway/testdata/lbacl-basic.cassette.yaml index 431e22e76e..51f435bd89 100644 --- a/scaleway/testdata/lbacl-basic.cassette.yaml +++ b/scaleway/testdata/lbacl-basic.cassette.yaml @@ -13,16 +13,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips method: POST response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "285" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:33:44 GMT + - Mon, 03 Jul 2023 20:14:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -32,7 +32,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79eafa14-e212-4416-853a-a73b10cc8843 + - cc683dbe-8cbc-4758-a769-107516f32faf status: 200 OK code: 200 duration: "" @@ -43,19 +43,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "285" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:33:44 GMT + - Mon, 03 Jul 2023 20:14:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -65,12 +65,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 997a8710-4e18-41cf-95cb-2296d92b414b + - d9a2b484-b644-471d-9f8e-0d22acd865ea status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-lb-acl","description":"","ip_id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","assign_flexible_ip":null,"tags":null,"type":"lb-s","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-lb-acl","description":"","ip_id":"86df9ff8-7a77-492d-9b03-4f6205127499","assign_flexible_ip":null,"tags":null,"type":"lb-s","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' form: {} headers: Content-Type: @@ -81,16 +81,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs method: POST response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:33:44.680737511Z","description":"","frontend_count":0,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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":"2023-06-29T13:33:44.680737511Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:14:41.397112262Z","description":"","frontend_count":0,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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":"2023-07-03T20:14:41.397112262Z","zone":"fr-par-1"}' headers: Content-Length: - - "888" + - "866" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:33:44 GMT + - Mon, 03 Jul 2023 20:14:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -100,7 +100,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8033d0f-91be-417e-a34e-c0de2814c5e1 + - 4773c851-c0e5-4472-8057-a94170df2ee0 status: 200 OK code: 200 duration: "" @@ -111,19 +111,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fb0a57c1-8c52-422b-928e-d4c55e6fca81 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3200925f-4ee2-43d5-bbfa-19e7f719902b method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":0,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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":"2023-06-29T13:33:44.680738Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":0,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[{"created_at":"2023-07-03T20:12:54.693081Z","id":"446158a2-e587-4ffb-9eb3-969288b5ba8a","ip_address":"10.74.34.71","region":"fr-par","status":"unknown","updated_at":"2023-07-03T20:14:41.601118Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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":"2023-07-03T20:14:41.611635Z","zone":"fr-par-1"}' headers: Content-Length: - - "882" + - "1072" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:33:44 GMT + - Mon, 03 Jul 2023 20:14:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -133,7 +133,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9e738cb-615d-42c5-a5bd-639adf4afc1f + - 27ef706a-dfdf-4fc7-be8c-91ef042a7569 status: 200 OK code: 200 duration: "" @@ -144,19 +144,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fb0a57c1-8c52-422b-928e-d4c55e6fca81 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3200925f-4ee2-43d5-bbfa-19e7f719902b method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":0,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[{"created_at":"2023-06-29T13:32:14.650814Z","id":"fb5bb3fa-a0ba-4c34-ad74-8450bbe5d145","ip_address":"10.194.174.75","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:33:45.851514Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":0,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[{"created_at":"2023-07-03T20:12:54.693081Z","id":"446158a2-e587-4ffb-9eb3-969288b5ba8a","ip_address":"10.74.34.71","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:14:42.380606Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"}' headers: Content-Length: - - "1097" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:14 GMT + - Mon, 03 Jul 2023 20:15:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -166,7 +166,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cfd25066-325a-4da0-96ac-49ef4d21fa71 + - 3d54b4d9-cbcb-4448-8865-40639a6690ad status: 200 OK code: 200 duration: "" @@ -177,19 +177,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fb0a57c1-8c52-422b-928e-d4c55e6fca81 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3200925f-4ee2-43d5-bbfa-19e7f719902b method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":0,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[{"created_at":"2023-06-29T13:32:14.650814Z","id":"fb5bb3fa-a0ba-4c34-ad74-8450bbe5d145","ip_address":"10.194.174.75","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:33:45.851514Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":0,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[{"created_at":"2023-07-03T20:12:54.693081Z","id":"446158a2-e587-4ffb-9eb3-969288b5ba8a","ip_address":"10.74.34.71","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:14:42.380606Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"}' headers: Content-Length: - - "1097" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:15 GMT + - Mon, 03 Jul 2023 20:15:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -199,7 +199,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a0a91ab-63e3-47ac-bb09-ecbca9923a50 + - d1a09803-aa69-4ec4-b9d6-b7a3089a3d7d status: 200 OK code: 200 duration: "" @@ -210,19 +210,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fb0a57c1-8c52-422b-928e-d4c55e6fca81/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3200925f-4ee2-43d5-bbfa-19e7f719902b/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:15 GMT + - Mon, 03 Jul 2023 20:15:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -232,7 +232,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9697bfb-61ea-45b1-b65e-87d060f06f48 + - ae472001-3bf1-4ddb-8df2-9aa1df2dc61b status: 200 OK code: 200 duration: "" @@ -243,19 +243,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fb0a57c1-8c52-422b-928e-d4c55e6fca81 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3200925f-4ee2-43d5-bbfa-19e7f719902b method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":0,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[{"created_at":"2023-06-29T13:32:14.650814Z","id":"fb5bb3fa-a0ba-4c34-ad74-8450bbe5d145","ip_address":"10.194.174.75","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:33:45.851514Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":0,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[{"created_at":"2023-07-03T20:12:54.693081Z","id":"446158a2-e587-4ffb-9eb3-969288b5ba8a","ip_address":"10.74.34.71","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:14:42.380606Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"}' headers: Content-Length: - - "1097" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:15 GMT + - Mon, 03 Jul 2023 20:15:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -265,12 +265,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf2948df-7497-4654-a1ff-faec81f6f363 + - bf01a6d6-3bcf-40a4-9aa2-b4c7c2c8bac8 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-lb-bkd-quirky-joliot","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_max_retries":2,"check_send_proxy":false,"transient_check_delay":null,"check_delay":60000,"check_timeout":30000},"server_ip":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":null,"max_retries":3,"max_connections":null,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' + body: '{"name":"tf-lb-bkd-quizzical-chaum","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_max_retries":2,"check_send_proxy":false,"transient_check_delay":"0.500000000s","check_delay":60000,"check_timeout":30000},"server_ip":null,"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":false,"ignore_ssl_server_verify":false,"redispatch_attempt_count":null,"max_retries":3,"max_connections":null,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' form: {} headers: Content-Type: @@ -278,19 +278,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fb0a57c1-8c52-422b-928e-d4c55e6fca81/backends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3200925f-4ee2-43d5-bbfa-19e7f719902b/backends method: POST response: - body: '{"created_at":"2023-06-29T13:34:15.347941556Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"dcf323c1-1e0f-4a55-a6fc-357e283a4e9c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":0,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[{"created_at":"2023-06-29T13:32:14.650814Z","id":"fb5bb3fa-a0ba-4c34-ad74-8450bbe5d145","ip_address":"10.194.174.75","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:34:15.376665907Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-joliot","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:34:15.347941556Z"}' + body: '{"created_at":"2023-07-03T20:15:12.113734461Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3ac22766-c21c-4523-aa1e-efa9b26575b9","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":0,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[{"created_at":"2023-07-03T20:12:54.693081Z","id":"446158a2-e587-4ffb-9eb3-969288b5ba8a","ip_address":"10.74.34.71","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:15:12.151206745Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quizzical-chaum","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:15:12.113734461Z"}' headers: Content-Length: - - "1971" + - "1917" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:15 GMT + - Mon, 03 Jul 2023 20:15:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -300,7 +300,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60076980-f9b1-48bd-8fa2-1481356f1380 + - cd1a2e0d-8dd7-47a7-8522-ccb60db2de98 status: 200 OK code: 200 duration: "" @@ -311,19 +311,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fb0a57c1-8c52-422b-928e-d4c55e6fca81 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3200925f-4ee2-43d5-bbfa-19e7f719902b method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":0,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[{"created_at":"2023-06-29T13:32:14.650814Z","id":"fb5bb3fa-a0ba-4c34-ad74-8450bbe5d145","ip_address":"10.194.174.75","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:34:15.376666Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":0,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[{"created_at":"2023-07-03T20:12:54.693081Z","id":"446158a2-e587-4ffb-9eb3-969288b5ba8a","ip_address":"10.74.34.71","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:15:12.151207Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"}' headers: Content-Length: - - "1099" + - "1069" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:15 GMT + - Mon, 03 Jul 2023 20:15:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -333,7 +333,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90dcd668-4964-4d1f-9b27-ed10645d7e51 + - e61bca67-1e29-445c-8559-4c64535f8b1c status: 200 OK code: 200 duration: "" @@ -344,19 +344,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/dcf323c1-1e0f-4a55-a6fc-357e283a4e9c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/3ac22766-c21c-4523-aa1e-efa9b26575b9 method: GET response: - body: '{"created_at":"2023-06-29T13:34:15.347942Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"dcf323c1-1e0f-4a55-a6fc-357e283a4e9c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":0,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[{"created_at":"2023-06-29T13:32:14.650814Z","id":"fb5bb3fa-a0ba-4c34-ad74-8450bbe5d145","ip_address":"10.194.174.75","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:34:15.376666Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-joliot","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:34:15.347942Z"}' + body: '{"created_at":"2023-07-03T20:15:12.113734Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3ac22766-c21c-4523-aa1e-efa9b26575b9","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":0,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[{"created_at":"2023-07-03T20:12:54.693081Z","id":"446158a2-e587-4ffb-9eb3-969288b5ba8a","ip_address":"10.74.34.71","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:15:12.151207Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quizzical-chaum","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:15:12.113734Z"}' headers: Content-Length: - - "1962" + - "1908" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:15 GMT + - Mon, 03 Jul 2023 20:15:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -366,7 +366,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 093a609f-efe7-4e1b-a05d-33d388494975 + - 968ad088-1f2b-4fe8-bf9f-ead316e27a8e status: 200 OK code: 200 duration: "" @@ -377,19 +377,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fb0a57c1-8c52-422b-928e-d4c55e6fca81 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3200925f-4ee2-43d5-bbfa-19e7f719902b method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":0,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[{"created_at":"2023-06-29T13:32:14.650814Z","id":"fb5bb3fa-a0ba-4c34-ad74-8450bbe5d145","ip_address":"10.194.174.75","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:34:15.655770Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":0,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[{"created_at":"2023-07-03T20:12:54.693081Z","id":"446158a2-e587-4ffb-9eb3-969288b5ba8a","ip_address":"10.74.34.71","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:15:12.401088Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"}' headers: Content-Length: - - "1097" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:15 GMT + - Mon, 03 Jul 2023 20:15:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -399,7 +399,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 483c6bad-f1c5-4e32-8ff3-dd5265a06c91 + - b23769d8-aa5b-47bb-b334-448309c072e4 status: 200 OK code: 200 duration: "" @@ -410,19 +410,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fb0a57c1-8c52-422b-928e-d4c55e6fca81 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3200925f-4ee2-43d5-bbfa-19e7f719902b method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":0,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[{"created_at":"2023-06-29T13:32:14.650814Z","id":"fb5bb3fa-a0ba-4c34-ad74-8450bbe5d145","ip_address":"10.194.174.75","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:34:15.655770Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":0,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[{"created_at":"2023-07-03T20:12:54.693081Z","id":"446158a2-e587-4ffb-9eb3-969288b5ba8a","ip_address":"10.74.34.71","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:15:12.401088Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"}' headers: Content-Length: - - "1097" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:15 GMT + - Mon, 03 Jul 2023 20:15:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -432,12 +432,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7aab3ded-d65b-406e-bf1a-7a775720c404 + - f3f36cbd-a7ac-4c26-9655-c2be20dc7ac4 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-test","inbound_port":80,"backend_id":"dcf323c1-1e0f-4a55-a6fc-357e283a4e9c","certificate_ids":null,"enable_http3":false,"timeout_client":30000}' + body: '{"name":"tf-test","inbound_port":80,"backend_id":"3ac22766-c21c-4523-aa1e-efa9b26575b9","certificate_ids":null,"enable_http3":false,"timeout_client":30000}' form: {} headers: Content-Type: @@ -445,19 +445,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fb0a57c1-8c52-422b-928e-d4c55e6fca81/frontends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3200925f-4ee2-43d5-bbfa-19e7f719902b/frontends method: POST response: - body: '{"backend":{"created_at":"2023-06-29T13:34:15.347942Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"dcf323c1-1e0f-4a55-a6fc-357e283a4e9c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-joliot","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:34:15.347942Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:34:16.034490Z","enable_http3":false,"id":"3918bd17-e673-400d-b65c-4937ba74d46a","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[{"created_at":"2023-06-29T13:32:14.650814Z","id":"fb5bb3fa-a0ba-4c34-ad74-8450bbe5d145","ip_address":"10.194.174.75","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:34:16.111732195Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:34:16.034490Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:15:12.113734Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3ac22766-c21c-4523-aa1e-efa9b26575b9","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quizzical-chaum","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:15:12.113734Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:15:12.718660Z","enable_http3":false,"id":"6907d687-e889-4702-9473-35738b032ae4","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[{"created_at":"2023-07-03T20:12:54.693081Z","id":"446158a2-e587-4ffb-9eb3-969288b5ba8a","ip_address":"10.74.34.71","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:15:12.781868779Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:15:12.718660Z"}' headers: Content-Length: - - "3120" + - "3034" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:16 GMT + - Mon, 03 Jul 2023 20:15:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -467,7 +467,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 248044b2-08fb-49a8-9ac2-bf96472c34cf + - 4de29a94-bd82-4c00-8720-7de607c29f16 status: 200 OK code: 200 duration: "" @@ -478,19 +478,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/3918bd17-e673-400d-b65c-4937ba74d46a + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/6907d687-e889-4702-9473-35738b032ae4 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:34:15.347942Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"dcf323c1-1e0f-4a55-a6fc-357e283a4e9c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-joliot","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:34:15.347942Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:34:16.034490Z","enable_http3":false,"id":"3918bd17-e673-400d-b65c-4937ba74d46a","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:34:16.034490Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:15:12.113734Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3ac22766-c21c-4523-aa1e-efa9b26575b9","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quizzical-chaum","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:15:12.113734Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:15:12.718660Z","enable_http3":false,"id":"6907d687-e889-4702-9473-35738b032ae4","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:15:12.718660Z"}' headers: Content-Length: - - "2896" + - "2818" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:16 GMT + - Mon, 03 Jul 2023 20:15:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -500,7 +500,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2111c293-939a-4560-beb1-1b772f992999 + - c83686c3-eb50-43e7-961c-34980d57cbe1 status: 200 OK code: 200 duration: "" @@ -514,20 +514,20 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/3918bd17-e673-400d-b65c-4937ba74d46a/acls + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/6907d687-e889-4702-9473-35738b032ae4/acls method: POST response: - body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:34:16.560626764Z","description":"a - description","frontend":{"backend":{"created_at":"2023-06-29T13:34:15.347942Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"dcf323c1-1e0f-4a55-a6fc-357e283a4e9c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-joliot","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:34:15.347942Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:34:16.034490Z","enable_http3":false,"id":"3918bd17-e673-400d-b65c-4937ba74d46a","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:34:16.034490Z"},"id":"b4a417f7-0b1f-413d-bffd-db286a1badd0","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"]},"name":"test-acl-basic","updated_at":"2023-06-29T13:34:16.560626764Z"}' + body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:15:13.327328294Z","description":"a + description","frontend":{"backend":{"created_at":"2023-07-03T20:15:12.113734Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3ac22766-c21c-4523-aa1e-efa9b26575b9","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quizzical-chaum","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:15:12.113734Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:15:12.718660Z","enable_http3":false,"id":"6907d687-e889-4702-9473-35738b032ae4","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:15:12.718660Z"},"id":"407625fe-64ee-4164-9c40-66ce22e80bc6","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"]},"name":"test-acl-basic","updated_at":"2023-07-03T20:15:13.327328294Z"}' headers: Content-Length: - - "3336" + - "3243" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:16 GMT + - Mon, 03 Jul 2023 20:15:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -537,7 +537,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9509f421-59f3-4204-82b6-7169cbf44ee6 + - b25ec65a-7f87-4001-aa81-1b0268f529ac status: 200 OK code: 200 duration: "" @@ -548,20 +548,20 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/b4a417f7-0b1f-413d-bffd-db286a1badd0 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/407625fe-64ee-4164-9c40-66ce22e80bc6 method: GET response: - body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:34:16.560627Z","description":"a - description","frontend":{"backend":{"created_at":"2023-06-29T13:34:15.347942Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"dcf323c1-1e0f-4a55-a6fc-357e283a4e9c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-joliot","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:34:15.347942Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:34:16.034490Z","enable_http3":false,"id":"3918bd17-e673-400d-b65c-4937ba74d46a","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:34:16.034490Z"},"id":"b4a417f7-0b1f-413d-bffd-db286a1badd0","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"]},"name":"test-acl-basic","updated_at":"2023-06-29T13:34:16.560627Z"}' + body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:15:13.327328Z","description":"a + description","frontend":{"backend":{"created_at":"2023-07-03T20:15:12.113734Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3ac22766-c21c-4523-aa1e-efa9b26575b9","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quizzical-chaum","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:15:12.113734Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:15:12.718660Z","enable_http3":false,"id":"6907d687-e889-4702-9473-35738b032ae4","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:15:12.718660Z"},"id":"407625fe-64ee-4164-9c40-66ce22e80bc6","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"]},"name":"test-acl-basic","updated_at":"2023-07-03T20:15:13.327328Z"}' headers: Content-Length: - - "3330" + - "3237" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:16 GMT + - Mon, 03 Jul 2023 20:15:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -571,7 +571,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9fdf57c6-4e31-45cd-9147-6ec58db68ad1 + - 46c03f9c-6b1d-45d4-bafd-e39215456c78 status: 200 OK code: 200 duration: "" @@ -582,20 +582,20 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/b4a417f7-0b1f-413d-bffd-db286a1badd0 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/407625fe-64ee-4164-9c40-66ce22e80bc6 method: GET response: - body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:34:16.560627Z","description":"a - description","frontend":{"backend":{"created_at":"2023-06-29T13:34:15.347942Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"dcf323c1-1e0f-4a55-a6fc-357e283a4e9c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-joliot","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:34:15.347942Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:34:16.034490Z","enable_http3":false,"id":"3918bd17-e673-400d-b65c-4937ba74d46a","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:34:16.034490Z"},"id":"b4a417f7-0b1f-413d-bffd-db286a1badd0","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"]},"name":"test-acl-basic","updated_at":"2023-06-29T13:34:16.560627Z"}' + body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:15:13.327328Z","description":"a + description","frontend":{"backend":{"created_at":"2023-07-03T20:15:12.113734Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3ac22766-c21c-4523-aa1e-efa9b26575b9","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quizzical-chaum","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:15:12.113734Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:15:12.718660Z","enable_http3":false,"id":"6907d687-e889-4702-9473-35738b032ae4","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:15:12.718660Z"},"id":"407625fe-64ee-4164-9c40-66ce22e80bc6","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"]},"name":"test-acl-basic","updated_at":"2023-07-03T20:15:13.327328Z"}' headers: Content-Length: - - "3330" + - "3237" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:17 GMT + - Mon, 03 Jul 2023 20:15:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -605,7 +605,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dbeeb778-e69c-4ccd-a6e3-6105f1b5d273 + - 13f9acab-bd37-4cc5-bad5-5a4fd4927034 status: 200 OK code: 200 duration: "" @@ -616,19 +616,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "319" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:17 GMT + - Mon, 03 Jul 2023 20:15:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -638,7 +638,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fcea007d-881f-4c0f-b75c-5f0e9649a5a8 + - 836e1b65-ed9d-429d-b503-bc06a4eb6238 status: 200 OK code: 200 duration: "" @@ -649,19 +649,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fb0a57c1-8c52-422b-928e-d4c55e6fca81 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3200925f-4ee2-43d5-bbfa-19e7f719902b method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[{"created_at":"2023-06-29T13:32:14.650814Z","id":"fb5bb3fa-a0ba-4c34-ad74-8450bbe5d145","ip_address":"10.194.174.75","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:34:16.959331Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[{"created_at":"2023-07-03T20:12:54.693081Z","id":"446158a2-e587-4ffb-9eb3-969288b5ba8a","ip_address":"10.74.34.71","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:15:13.674827Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"}' headers: Content-Length: - - "1097" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:17 GMT + - Mon, 03 Jul 2023 20:15:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -671,7 +671,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 868c1681-6e4b-480b-80e0-949a5c17f756 + - 57ef4c0f-c4b7-404e-811a-f8816ab954be status: 200 OK code: 200 duration: "" @@ -682,19 +682,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fb0a57c1-8c52-422b-928e-d4c55e6fca81 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3200925f-4ee2-43d5-bbfa-19e7f719902b method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[{"created_at":"2023-06-29T13:32:14.650814Z","id":"fb5bb3fa-a0ba-4c34-ad74-8450bbe5d145","ip_address":"10.194.174.75","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:34:16.959331Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[{"created_at":"2023-07-03T20:12:54.693081Z","id":"446158a2-e587-4ffb-9eb3-969288b5ba8a","ip_address":"10.74.34.71","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:15:13.674827Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"}' headers: Content-Length: - - "1097" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:17 GMT + - Mon, 03 Jul 2023 20:15:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -704,7 +704,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 079cb3e7-3755-42f7-a939-dcf8d4c92542 + - 347fce9c-120e-4cfb-b568-7e417f9d89e1 status: 200 OK code: 200 duration: "" @@ -715,19 +715,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fb0a57c1-8c52-422b-928e-d4c55e6fca81/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3200925f-4ee2-43d5-bbfa-19e7f719902b/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:17 GMT + - Mon, 03 Jul 2023 20:15:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -737,7 +737,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5cc515b8-033e-4fe8-a754-887a4372aa75 + - 50b197a8-9004-476c-84d1-11fd1d5e957b status: 200 OK code: 200 duration: "" @@ -748,19 +748,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/dcf323c1-1e0f-4a55-a6fc-357e283a4e9c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/3ac22766-c21c-4523-aa1e-efa9b26575b9 method: GET response: - body: '{"created_at":"2023-06-29T13:34:15.347942Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"dcf323c1-1e0f-4a55-a6fc-357e283a4e9c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[{"created_at":"2023-06-29T13:32:14.650814Z","id":"fb5bb3fa-a0ba-4c34-ad74-8450bbe5d145","ip_address":"10.194.174.75","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:34:16.959331Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-joliot","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:34:15.347942Z"}' + body: '{"created_at":"2023-07-03T20:15:12.113734Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3ac22766-c21c-4523-aa1e-efa9b26575b9","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[{"created_at":"2023-07-03T20:12:54.693081Z","id":"446158a2-e587-4ffb-9eb3-969288b5ba8a","ip_address":"10.74.34.71","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:15:13.674827Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quizzical-chaum","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:15:12.113734Z"}' headers: Content-Length: - - "1960" + - "1906" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:17 GMT + - Mon, 03 Jul 2023 20:15:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -770,7 +770,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a80edd2-06e0-4778-b290-8f6bc6b666b6 + - ff840f67-b2c5-47ec-be29-d4e0ad21da53 status: 200 OK code: 200 duration: "" @@ -781,19 +781,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fb0a57c1-8c52-422b-928e-d4c55e6fca81 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3200925f-4ee2-43d5-bbfa-19e7f719902b method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[{"created_at":"2023-06-29T13:32:14.650814Z","id":"fb5bb3fa-a0ba-4c34-ad74-8450bbe5d145","ip_address":"10.194.174.75","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:34:16.959331Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[{"created_at":"2023-07-03T20:12:54.693081Z","id":"446158a2-e587-4ffb-9eb3-969288b5ba8a","ip_address":"10.74.34.71","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:15:13.674827Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"}' headers: Content-Length: - - "1097" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:17 GMT + - Mon, 03 Jul 2023 20:15:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -803,7 +803,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eed2e259-3d16-493a-ae10-1034c22a6cd1 + - ec3b3713-6703-4d16-82bd-bb5e9c466da5 status: 200 OK code: 200 duration: "" @@ -814,19 +814,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/3918bd17-e673-400d-b65c-4937ba74d46a + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/6907d687-e889-4702-9473-35738b032ae4 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:34:15.347942Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"dcf323c1-1e0f-4a55-a6fc-357e283a4e9c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-joliot","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:34:15.347942Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:34:16.034490Z","enable_http3":false,"id":"3918bd17-e673-400d-b65c-4937ba74d46a","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:34:16.034490Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:15:12.113734Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3ac22766-c21c-4523-aa1e-efa9b26575b9","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quizzical-chaum","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:15:12.113734Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:15:12.718660Z","enable_http3":false,"id":"6907d687-e889-4702-9473-35738b032ae4","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:15:12.718660Z"}' headers: Content-Length: - - "2896" + - "2818" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:17 GMT + - Mon, 03 Jul 2023 20:15:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -836,7 +836,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 502212b7-e2e1-41d6-b905-2006917c584a + - 020607c6-da62-46dc-978a-860ec3c6d5f3 status: 200 OK code: 200 duration: "" @@ -847,20 +847,20 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/b4a417f7-0b1f-413d-bffd-db286a1badd0 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/407625fe-64ee-4164-9c40-66ce22e80bc6 method: GET response: - body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:34:16.560627Z","description":"a - description","frontend":{"backend":{"created_at":"2023-06-29T13:34:15.347942Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"dcf323c1-1e0f-4a55-a6fc-357e283a4e9c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-joliot","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:34:15.347942Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:34:16.034490Z","enable_http3":false,"id":"3918bd17-e673-400d-b65c-4937ba74d46a","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:34:16.034490Z"},"id":"b4a417f7-0b1f-413d-bffd-db286a1badd0","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"]},"name":"test-acl-basic","updated_at":"2023-06-29T13:34:16.560627Z"}' + body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:15:13.327328Z","description":"a + description","frontend":{"backend":{"created_at":"2023-07-03T20:15:12.113734Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3ac22766-c21c-4523-aa1e-efa9b26575b9","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quizzical-chaum","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:15:12.113734Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:15:12.718660Z","enable_http3":false,"id":"6907d687-e889-4702-9473-35738b032ae4","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:15:12.718660Z"},"id":"407625fe-64ee-4164-9c40-66ce22e80bc6","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"]},"name":"test-acl-basic","updated_at":"2023-07-03T20:15:13.327328Z"}' headers: Content-Length: - - "3330" + - "3237" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:18 GMT + - Mon, 03 Jul 2023 20:15:14 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -870,7 +870,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c34a0c8-c174-49ff-bead-83dc5c347be1 + - 4f8d65b6-91c7-4063-83f1-4f69ad52a853 status: 200 OK code: 200 duration: "" @@ -881,19 +881,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "319" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:18 GMT + - Mon, 03 Jul 2023 20:15:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -903,7 +903,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b5adf93-779e-48f1-a61a-d445a376fb9f + - e1f20e69-eec9-4379-aea3-3dacd1d26b1f status: 200 OK code: 200 duration: "" @@ -914,19 +914,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fb0a57c1-8c52-422b-928e-d4c55e6fca81 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3200925f-4ee2-43d5-bbfa-19e7f719902b method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[{"created_at":"2023-06-29T13:32:14.650814Z","id":"fb5bb3fa-a0ba-4c34-ad74-8450bbe5d145","ip_address":"10.194.174.75","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:34:16.959331Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[{"created_at":"2023-07-03T20:12:54.693081Z","id":"446158a2-e587-4ffb-9eb3-969288b5ba8a","ip_address":"10.74.34.71","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:15:13.674827Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"}' headers: Content-Length: - - "1097" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:18 GMT + - Mon, 03 Jul 2023 20:15:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -936,7 +936,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - efff40ba-485a-48eb-8bd5-b57788f0a875 + - 8e18a912-d542-4943-8c3d-99c26a3665f9 status: 200 OK code: 200 duration: "" @@ -947,19 +947,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fb0a57c1-8c52-422b-928e-d4c55e6fca81 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3200925f-4ee2-43d5-bbfa-19e7f719902b method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[{"created_at":"2023-06-29T13:32:14.650814Z","id":"fb5bb3fa-a0ba-4c34-ad74-8450bbe5d145","ip_address":"10.194.174.75","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:34:16.959331Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[{"created_at":"2023-07-03T20:12:54.693081Z","id":"446158a2-e587-4ffb-9eb3-969288b5ba8a","ip_address":"10.74.34.71","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:15:13.674827Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"}' headers: Content-Length: - - "1097" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:18 GMT + - Mon, 03 Jul 2023 20:15:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -969,7 +969,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a9843815-6abb-4dcc-a95c-c874290448b0 + - de2a1be2-29ed-40d1-886b-310d28f6c9c5 status: 200 OK code: 200 duration: "" @@ -980,19 +980,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fb0a57c1-8c52-422b-928e-d4c55e6fca81/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3200925f-4ee2-43d5-bbfa-19e7f719902b/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:18 GMT + - Mon, 03 Jul 2023 20:15:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1002,7 +1002,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d913ab32-a202-459f-b16d-a30ab81ec061 + - cc5d087f-0bc5-4860-9abd-85ff5a58e7f7 status: 200 OK code: 200 duration: "" @@ -1013,19 +1013,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/dcf323c1-1e0f-4a55-a6fc-357e283a4e9c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/3ac22766-c21c-4523-aa1e-efa9b26575b9 method: GET response: - body: '{"created_at":"2023-06-29T13:34:15.347942Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"dcf323c1-1e0f-4a55-a6fc-357e283a4e9c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[{"created_at":"2023-06-29T13:32:14.650814Z","id":"fb5bb3fa-a0ba-4c34-ad74-8450bbe5d145","ip_address":"10.194.174.75","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:34:16.959331Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-joliot","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:34:15.347942Z"}' + body: '{"created_at":"2023-07-03T20:15:12.113734Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3ac22766-c21c-4523-aa1e-efa9b26575b9","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[{"created_at":"2023-07-03T20:12:54.693081Z","id":"446158a2-e587-4ffb-9eb3-969288b5ba8a","ip_address":"10.74.34.71","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:15:13.674827Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quizzical-chaum","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:15:12.113734Z"}' headers: Content-Length: - - "1960" + - "1906" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:18 GMT + - Mon, 03 Jul 2023 20:15:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1035,7 +1035,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00fd4a09-f1bf-47f3-b941-0cbe64bbd35b + - c00b5631-4e6e-47f4-ba0b-7716fa7bee2d status: 200 OK code: 200 duration: "" @@ -1046,19 +1046,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fb0a57c1-8c52-422b-928e-d4c55e6fca81 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3200925f-4ee2-43d5-bbfa-19e7f719902b method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[{"created_at":"2023-06-29T13:32:14.650814Z","id":"fb5bb3fa-a0ba-4c34-ad74-8450bbe5d145","ip_address":"10.194.174.75","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:34:16.959331Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[{"created_at":"2023-07-03T20:12:54.693081Z","id":"446158a2-e587-4ffb-9eb3-969288b5ba8a","ip_address":"10.74.34.71","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:15:13.674827Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"}' headers: Content-Length: - - "1097" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:18 GMT + - Mon, 03 Jul 2023 20:15:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1068,7 +1068,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b12f2336-bb87-42df-b0f5-e52efb0ead3e + - e0d6d802-2b51-4f46-9c28-30e4bc83c745 status: 200 OK code: 200 duration: "" @@ -1079,19 +1079,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/3918bd17-e673-400d-b65c-4937ba74d46a + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/6907d687-e889-4702-9473-35738b032ae4 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:34:15.347942Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"dcf323c1-1e0f-4a55-a6fc-357e283a4e9c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-joliot","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:34:15.347942Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:34:16.034490Z","enable_http3":false,"id":"3918bd17-e673-400d-b65c-4937ba74d46a","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:34:16.034490Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:15:12.113734Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3ac22766-c21c-4523-aa1e-efa9b26575b9","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quizzical-chaum","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:15:12.113734Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:15:12.718660Z","enable_http3":false,"id":"6907d687-e889-4702-9473-35738b032ae4","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:15:12.718660Z"}' headers: Content-Length: - - "2896" + - "2818" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:18 GMT + - Mon, 03 Jul 2023 20:15:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1101,7 +1101,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b0266d1-0d19-45bb-a2e1-42ee4946b7ce + - 00fe5176-4e33-4fae-abc9-0d2c91ee7e5c status: 200 OK code: 200 duration: "" @@ -1112,20 +1112,20 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/b4a417f7-0b1f-413d-bffd-db286a1badd0 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/407625fe-64ee-4164-9c40-66ce22e80bc6 method: GET response: - body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2023-06-29T13:34:16.560627Z","description":"a - description","frontend":{"backend":{"created_at":"2023-06-29T13:34:15.347942Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"dcf323c1-1e0f-4a55-a6fc-357e283a4e9c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-joliot","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:34:15.347942Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:34:16.034490Z","enable_http3":false,"id":"3918bd17-e673-400d-b65c-4937ba74d46a","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:34:16.034490Z"},"id":"b4a417f7-0b1f-413d-bffd-db286a1badd0","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"]},"name":"test-acl-basic","updated_at":"2023-06-29T13:34:16.560627Z"}' + body: '{"action":{"redirect":null,"type":"allow"},"created_at":"2023-07-03T20:15:13.327328Z","description":"a + description","frontend":{"backend":{"created_at":"2023-07-03T20:15:12.113734Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3ac22766-c21c-4523-aa1e-efa9b26575b9","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quizzical-chaum","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:15:12.113734Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:15:12.718660Z","enable_http3":false,"id":"6907d687-e889-4702-9473-35738b032ae4","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:15:12.718660Z"},"id":"407625fe-64ee-4164-9c40-66ce22e80bc6","index":4,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":true,"ip_subnet":["192.168.0.1","192.168.0.2","192.168.10.0/24"]},"name":"test-acl-basic","updated_at":"2023-07-03T20:15:13.327328Z"}' headers: Content-Length: - - "3330" + - "3237" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:19 GMT + - Mon, 03 Jul 2023 20:15:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1135,7 +1135,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 211f0863-75fe-4540-9023-4498461f9de0 + - b67b1db7-a2e4-4fb6-abe0-01805a7f36bc status: 200 OK code: 200 duration: "" @@ -1149,20 +1149,20 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/b4a417f7-0b1f-413d-bffd-db286a1badd0 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/407625fe-64ee-4164-9c40-66ce22e80bc6 method: PUT response: - body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2023-06-29T13:34:16.560627Z","description":"updated - description","frontend":{"backend":{"created_at":"2023-06-29T13:34:15.347942Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"dcf323c1-1e0f-4a55-a6fc-357e283a4e9c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-joliot","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:34:15.347942Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:34:16.034490Z","enable_http3":false,"id":"3918bd17-e673-400d-b65c-4937ba74d46a","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[{"created_at":"2023-06-29T13:32:14.650814Z","id":"fb5bb3fa-a0ba-4c34-ad74-8450bbe5d145","ip_address":"10.194.174.75","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:34:19.675450227Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:34:16.034490Z"},"id":"b4a417f7-0b1f-413d-bffd-db286a1badd0","index":3,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"updated-test-acl-basic","updated_at":"2023-06-29T13:34:19.645086425Z"}' + body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2023-07-03T20:15:13.327328Z","description":"updated + description","frontend":{"backend":{"created_at":"2023-07-03T20:15:12.113734Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3ac22766-c21c-4523-aa1e-efa9b26575b9","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quizzical-chaum","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:15:12.113734Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:15:12.718660Z","enable_http3":false,"id":"6907d687-e889-4702-9473-35738b032ae4","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[{"created_at":"2023-07-03T20:12:54.693081Z","id":"446158a2-e587-4ffb-9eb3-969288b5ba8a","ip_address":"10.74.34.71","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:15:16.569877179Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:15:12.718660Z"},"id":"407625fe-64ee-4164-9c40-66ce22e80bc6","index":3,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"updated-test-acl-basic","updated_at":"2023-07-03T20:15:16.541018444Z"}' headers: Content-Length: - - "3535" + - "3436" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:19 GMT + - Mon, 03 Jul 2023 20:15:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1172,7 +1172,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1dfac1d4-7e79-4019-88d3-625f5b980e40 + - fdcf0d35-5d89-491c-b634-d8dcbc39dbfc status: 200 OK code: 200 duration: "" @@ -1183,20 +1183,20 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/b4a417f7-0b1f-413d-bffd-db286a1badd0 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/407625fe-64ee-4164-9c40-66ce22e80bc6 method: GET response: - body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2023-06-29T13:34:16.560627Z","description":"updated - description","frontend":{"backend":{"created_at":"2023-06-29T13:34:15.347942Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"dcf323c1-1e0f-4a55-a6fc-357e283a4e9c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-joliot","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:34:15.347942Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:34:16.034490Z","enable_http3":false,"id":"3918bd17-e673-400d-b65c-4937ba74d46a","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:34:16.034490Z"},"id":"b4a417f7-0b1f-413d-bffd-db286a1badd0","index":3,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"updated-test-acl-basic","updated_at":"2023-06-29T13:34:19.645086Z"}' + body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2023-07-03T20:15:13.327328Z","description":"updated + description","frontend":{"backend":{"created_at":"2023-07-03T20:15:12.113734Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3ac22766-c21c-4523-aa1e-efa9b26575b9","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quizzical-chaum","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:15:12.113734Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:15:12.718660Z","enable_http3":false,"id":"6907d687-e889-4702-9473-35738b032ae4","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:15:12.718660Z"},"id":"407625fe-64ee-4164-9c40-66ce22e80bc6","index":3,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"updated-test-acl-basic","updated_at":"2023-07-03T20:15:16.541018Z"}' headers: Content-Length: - - "3308" + - "3217" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:20 GMT + - Mon, 03 Jul 2023 20:15:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1206,7 +1206,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb88d2ce-e13e-49fa-b840-9dedcf2706fa + - dd55fae7-b475-49e2-bacb-3b741c0cf177 status: 200 OK code: 200 duration: "" @@ -1217,20 +1217,20 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/b4a417f7-0b1f-413d-bffd-db286a1badd0 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/407625fe-64ee-4164-9c40-66ce22e80bc6 method: GET response: - body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2023-06-29T13:34:16.560627Z","description":"updated - description","frontend":{"backend":{"created_at":"2023-06-29T13:34:15.347942Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"dcf323c1-1e0f-4a55-a6fc-357e283a4e9c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-joliot","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:34:15.347942Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:34:16.034490Z","enable_http3":false,"id":"3918bd17-e673-400d-b65c-4937ba74d46a","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:34:16.034490Z"},"id":"b4a417f7-0b1f-413d-bffd-db286a1badd0","index":3,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"updated-test-acl-basic","updated_at":"2023-06-29T13:34:19.645086Z"}' + body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2023-07-03T20:15:13.327328Z","description":"updated + description","frontend":{"backend":{"created_at":"2023-07-03T20:15:12.113734Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3ac22766-c21c-4523-aa1e-efa9b26575b9","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quizzical-chaum","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:15:12.113734Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:15:12.718660Z","enable_http3":false,"id":"6907d687-e889-4702-9473-35738b032ae4","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:15:12.718660Z"},"id":"407625fe-64ee-4164-9c40-66ce22e80bc6","index":3,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"updated-test-acl-basic","updated_at":"2023-07-03T20:15:16.541018Z"}' headers: Content-Length: - - "3308" + - "3217" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:20 GMT + - Mon, 03 Jul 2023 20:15:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1240,7 +1240,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9b0c671-af8b-4e11-8714-497f3876df26 + - 145dbdfb-a192-404b-8d8f-471cc34c3861 status: 200 OK code: 200 duration: "" @@ -1251,19 +1251,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "319" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:20 GMT + - Mon, 03 Jul 2023 20:15:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1273,7 +1273,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c345ffcf-a4b6-4a8b-91ac-5da013b52f14 + - e734af15-2181-4e4e-a155-d2bf48e14a4c status: 200 OK code: 200 duration: "" @@ -1284,19 +1284,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fb0a57c1-8c52-422b-928e-d4c55e6fca81 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3200925f-4ee2-43d5-bbfa-19e7f719902b method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[{"created_at":"2023-06-29T13:32:14.650814Z","id":"fb5bb3fa-a0ba-4c34-ad74-8450bbe5d145","ip_address":"10.194.174.75","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:34:20.088312Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[{"created_at":"2023-07-03T20:12:54.693081Z","id":"446158a2-e587-4ffb-9eb3-969288b5ba8a","ip_address":"10.74.34.71","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:15:16.869395Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"}' headers: Content-Length: - - "1097" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:20 GMT + - Mon, 03 Jul 2023 20:15:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1306,7 +1306,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6583578b-6517-410e-ac82-6bca92fa9776 + - e888f81d-dc00-4157-a207-ca2b4d0b54d1 status: 200 OK code: 200 duration: "" @@ -1317,19 +1317,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fb0a57c1-8c52-422b-928e-d4c55e6fca81 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3200925f-4ee2-43d5-bbfa-19e7f719902b method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[{"created_at":"2023-06-29T13:32:14.650814Z","id":"fb5bb3fa-a0ba-4c34-ad74-8450bbe5d145","ip_address":"10.194.174.75","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:34:20.088312Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[{"created_at":"2023-07-03T20:12:54.693081Z","id":"446158a2-e587-4ffb-9eb3-969288b5ba8a","ip_address":"10.74.34.71","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:15:16.869395Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"}' headers: Content-Length: - - "1097" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:20 GMT + - Mon, 03 Jul 2023 20:15:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1339,7 +1339,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 361d27e2-59c3-4d24-94ca-59c465048f4c + - db8925df-4b5c-40f9-a752-980eccee3505 status: 200 OK code: 200 duration: "" @@ -1350,19 +1350,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fb0a57c1-8c52-422b-928e-d4c55e6fca81/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3200925f-4ee2-43d5-bbfa-19e7f719902b/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "39" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:20 GMT + - Mon, 03 Jul 2023 20:15:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1372,7 +1372,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 157a6415-6468-43f8-b947-bf6d6f6c7658 + - fd47ea5c-b878-4cb4-a3c4-52f9cb74336f status: 200 OK code: 200 duration: "" @@ -1383,19 +1383,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/dcf323c1-1e0f-4a55-a6fc-357e283a4e9c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/3ac22766-c21c-4523-aa1e-efa9b26575b9 method: GET response: - body: '{"created_at":"2023-06-29T13:34:15.347942Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"dcf323c1-1e0f-4a55-a6fc-357e283a4e9c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[{"created_at":"2023-06-29T13:32:14.650814Z","id":"fb5bb3fa-a0ba-4c34-ad74-8450bbe5d145","ip_address":"10.194.174.75","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:34:20.088312Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-joliot","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:34:15.347942Z"}' + body: '{"created_at":"2023-07-03T20:15:12.113734Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3ac22766-c21c-4523-aa1e-efa9b26575b9","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[{"created_at":"2023-07-03T20:12:54.693081Z","id":"446158a2-e587-4ffb-9eb3-969288b5ba8a","ip_address":"10.74.34.71","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:15:16.869395Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quizzical-chaum","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:15:12.113734Z"}' headers: Content-Length: - - "1960" + - "1906" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:20 GMT + - Mon, 03 Jul 2023 20:15:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1405,7 +1405,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 239e3e8f-3178-4b85-ab6f-a38e2685c28e + - 5971f07d-07fa-4464-ad56-b1dfae0a83ab status: 200 OK code: 200 duration: "" @@ -1416,19 +1416,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fb0a57c1-8c52-422b-928e-d4c55e6fca81 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3200925f-4ee2-43d5-bbfa-19e7f719902b method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[{"created_at":"2023-06-29T13:32:14.650814Z","id":"fb5bb3fa-a0ba-4c34-ad74-8450bbe5d145","ip_address":"10.194.174.75","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:34:20.088312Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[{"created_at":"2023-07-03T20:12:54.693081Z","id":"446158a2-e587-4ffb-9eb3-969288b5ba8a","ip_address":"10.74.34.71","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:15:16.869395Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"}' headers: Content-Length: - - "1097" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:21 GMT + - Mon, 03 Jul 2023 20:15:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1438,7 +1438,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0cb0f1ab-ecb4-4a76-a820-883e85450e9d + - 547f2c35-b4c0-4aea-a824-3c57e1dc708a status: 200 OK code: 200 duration: "" @@ -1449,19 +1449,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/3918bd17-e673-400d-b65c-4937ba74d46a + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/6907d687-e889-4702-9473-35738b032ae4 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:34:15.347942Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"dcf323c1-1e0f-4a55-a6fc-357e283a4e9c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-joliot","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:34:15.347942Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:34:16.034490Z","enable_http3":false,"id":"3918bd17-e673-400d-b65c-4937ba74d46a","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:34:16.034490Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:15:12.113734Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3ac22766-c21c-4523-aa1e-efa9b26575b9","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quizzical-chaum","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:15:12.113734Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:15:12.718660Z","enable_http3":false,"id":"6907d687-e889-4702-9473-35738b032ae4","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:15:12.718660Z"}' headers: Content-Length: - - "2896" + - "2818" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:21 GMT + - Mon, 03 Jul 2023 20:15:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1471,7 +1471,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4ea37a16-f5ad-47e1-8d5f-745370391060 + - 40dbd87a-33f1-454d-b2a1-56291c9a9418 status: 200 OK code: 200 duration: "" @@ -1482,20 +1482,20 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/b4a417f7-0b1f-413d-bffd-db286a1badd0 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/407625fe-64ee-4164-9c40-66ce22e80bc6 method: GET response: - body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2023-06-29T13:34:16.560627Z","description":"updated - description","frontend":{"backend":{"created_at":"2023-06-29T13:34:15.347942Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"dcf323c1-1e0f-4a55-a6fc-357e283a4e9c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-joliot","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:34:15.347942Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:34:16.034490Z","enable_http3":false,"id":"3918bd17-e673-400d-b65c-4937ba74d46a","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:34:16.034490Z"},"id":"b4a417f7-0b1f-413d-bffd-db286a1badd0","index":3,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"updated-test-acl-basic","updated_at":"2023-06-29T13:34:19.645086Z"}' + body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2023-07-03T20:15:13.327328Z","description":"updated + description","frontend":{"backend":{"created_at":"2023-07-03T20:15:12.113734Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3ac22766-c21c-4523-aa1e-efa9b26575b9","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quizzical-chaum","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:15:12.113734Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:15:12.718660Z","enable_http3":false,"id":"6907d687-e889-4702-9473-35738b032ae4","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:15:12.718660Z"},"id":"407625fe-64ee-4164-9c40-66ce22e80bc6","index":3,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"updated-test-acl-basic","updated_at":"2023-07-03T20:15:16.541018Z"}' headers: Content-Length: - - "3308" + - "3217" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:21 GMT + - Mon, 03 Jul 2023 20:15:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1505,7 +1505,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1deb8a55-83cd-4e64-8d4a-7c68bd7b0a98 + - 37fa14b0-f480-4c4e-a9ee-576372c65d07 status: 200 OK code: 200 duration: "" @@ -1516,19 +1516,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "319" + - "316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:21 GMT + - Mon, 03 Jul 2023 20:15:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1538,7 +1538,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a7a2dfc-8dbd-4906-94d0-fb0dccc9c7bd + - b264736a-9e0c-46db-9aa0-82fce8b0af27 status: 200 OK code: 200 duration: "" @@ -1549,19 +1549,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fb0a57c1-8c52-422b-928e-d4c55e6fca81 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3200925f-4ee2-43d5-bbfa-19e7f719902b method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[{"created_at":"2023-06-29T13:32:14.650814Z","id":"fb5bb3fa-a0ba-4c34-ad74-8450bbe5d145","ip_address":"10.194.174.75","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:34:20.088312Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[{"created_at":"2023-07-03T20:12:54.693081Z","id":"446158a2-e587-4ffb-9eb3-969288b5ba8a","ip_address":"10.74.34.71","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:15:16.869395Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"}' headers: Content-Length: - - "1097" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:21 GMT + - Mon, 03 Jul 2023 20:15:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1571,7 +1571,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1238e1db-6d9d-4b26-9fe7-9b49df63fdee + - 80c79e16-b1ec-40b3-87af-3ca8b1f312fb status: 200 OK code: 200 duration: "" @@ -1582,19 +1582,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/dcf323c1-1e0f-4a55-a6fc-357e283a4e9c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/3ac22766-c21c-4523-aa1e-efa9b26575b9 method: GET response: - body: '{"created_at":"2023-06-29T13:34:15.347942Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"dcf323c1-1e0f-4a55-a6fc-357e283a4e9c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[{"created_at":"2023-06-29T13:32:14.650814Z","id":"fb5bb3fa-a0ba-4c34-ad74-8450bbe5d145","ip_address":"10.194.174.75","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:34:20.088312Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-joliot","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:34:15.347942Z"}' + body: '{"created_at":"2023-07-03T20:15:12.113734Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3ac22766-c21c-4523-aa1e-efa9b26575b9","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[{"created_at":"2023-07-03T20:12:54.693081Z","id":"446158a2-e587-4ffb-9eb3-969288b5ba8a","ip_address":"10.74.34.71","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:15:16.869395Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quizzical-chaum","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:15:12.113734Z"}' headers: Content-Length: - - "1960" + - "1906" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:21 GMT + - Mon, 03 Jul 2023 20:15:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1604,7 +1604,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e6914ac-58f2-4530-b76a-860395196cee + - 8a67dcad-7e00-435b-9b6b-02ca9035d8b5 status: 200 OK code: 200 duration: "" @@ -1615,19 +1615,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/3918bd17-e673-400d-b65c-4937ba74d46a + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/6907d687-e889-4702-9473-35738b032ae4 method: GET response: - body: '{"backend":{"created_at":"2023-06-29T13:34:15.347942Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"dcf323c1-1e0f-4a55-a6fc-357e283a4e9c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-joliot","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:34:15.347942Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:34:16.034490Z","enable_http3":false,"id":"3918bd17-e673-400d-b65c-4937ba74d46a","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:34:16.034490Z"}' + body: '{"backend":{"created_at":"2023-07-03T20:15:12.113734Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3ac22766-c21c-4523-aa1e-efa9b26575b9","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quizzical-chaum","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:15:12.113734Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:15:12.718660Z","enable_http3":false,"id":"6907d687-e889-4702-9473-35738b032ae4","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:15:12.718660Z"}' headers: Content-Length: - - "2896" + - "2818" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:21 GMT + - Mon, 03 Jul 2023 20:15:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1637,7 +1637,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a1274835-0722-4cf2-a093-e9a0e555d886 + - 22b6bbe4-34f1-41b6-9935-423bb7375515 status: 200 OK code: 200 duration: "" @@ -1648,20 +1648,20 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/b4a417f7-0b1f-413d-bffd-db286a1badd0 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/407625fe-64ee-4164-9c40-66ce22e80bc6 method: GET response: - body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2023-06-29T13:34:16.560627Z","description":"updated - description","frontend":{"backend":{"created_at":"2023-06-29T13:34:15.347942Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":null},"id":"dcf323c1-1e0f-4a55-a6fc-357e283a4e9c","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quirky-joliot","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-06-29T13:34:15.347942Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-06-29T13:34:16.034490Z","enable_http3":false,"id":"3918bd17-e673-400d-b65c-4937ba74d46a","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-06-29T13:34:16.034490Z"},"id":"b4a417f7-0b1f-413d-bffd-db286a1badd0","index":3,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"updated-test-acl-basic","updated_at":"2023-06-29T13:34:19.645086Z"}' + body: '{"action":{"redirect":null,"type":"deny"},"created_at":"2023-07-03T20:15:13.327328Z","description":"updated + description","frontend":{"backend":{"created_at":"2023-07-03T20:15:12.113734Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"3ac22766-c21c-4523-aa1e-efa9b26575b9","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-quizzical-chaum","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2023-07-03T20:15:12.113734Z"},"certificate":null,"certificate_ids":[],"created_at":"2023-07-03T20:15:12.718660Z","enable_http3":false,"id":"6907d687-e889-4702-9473-35738b032ae4","inbound_port":80,"lb":{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"},"name":"tf-test","timeout_client":30000,"updated_at":"2023-07-03T20:15:12.718660Z"},"id":"407625fe-64ee-4164-9c40-66ce22e80bc6","index":3,"match":{"http_filter":"acl_http_filter_none","http_filter_option":null,"http_filter_value":[],"invert":false,"ip_subnet":["0.0.0.0/0"]},"name":"updated-test-acl-basic","updated_at":"2023-07-03T20:15:16.541018Z"}' headers: Content-Length: - - "3308" + - "3217" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:21 GMT + - Mon, 03 Jul 2023 20:15:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1671,7 +1671,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fce40ff3-6425-4b6a-97a2-38765089ddf1 + - c0b60813-c64d-4e70-b37a-c0f4f752ac1b status: 200 OK code: 200 duration: "" @@ -1682,19 +1682,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fb0a57c1-8c52-422b-928e-d4c55e6fca81/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3200925f-4ee2-43d5-bbfa-19e7f719902b method: GET response: - body: '{"private_network":[],"total_count":0}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[{"created_at":"2023-07-03T20:12:54.693081Z","id":"446158a2-e587-4ffb-9eb3-969288b5ba8a","ip_address":"10.74.34.71","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:15:16.869395Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"}' headers: Content-Length: - - "39" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:21 GMT + - Mon, 03 Jul 2023 20:15:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1704,7 +1704,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec36e9d3-97ea-44a6-b7e6-0795c94b64d1 + - 26530b03-da6c-4b55-b384-4d2e42fe3c36 status: 200 OK code: 200 duration: "" @@ -1715,19 +1715,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fb0a57c1-8c52-422b-928e-d4c55e6fca81 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3200925f-4ee2-43d5-bbfa-19e7f719902b/private-networks?order_by=created_at_asc method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[{"created_at":"2023-06-29T13:32:14.650814Z","id":"fb5bb3fa-a0ba-4c34-ad74-8450bbe5d145","ip_address":"10.194.174.75","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:34:20.088312Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"}' + body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "1097" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:21 GMT + - Mon, 03 Jul 2023 20:15:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1737,7 +1737,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44831a25-eb75-4687-9165-eb9348ac8300 + - 90ee83ef-28ad-4de2-9f3f-0b23691cc053 status: 200 OK code: 200 duration: "" @@ -1748,19 +1748,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fb0a57c1-8c52-422b-928e-d4c55e6fca81 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3200925f-4ee2-43d5-bbfa-19e7f719902b method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":1,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[{"created_at":"2023-06-29T13:32:14.650814Z","id":"fb5bb3fa-a0ba-4c34-ad74-8450bbe5d145","ip_address":"10.194.174.75","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:34:20.088312Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":1,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[{"created_at":"2023-07-03T20:12:54.693081Z","id":"446158a2-e587-4ffb-9eb3-969288b5ba8a","ip_address":"10.74.34.71","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:15:16.869395Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"}' headers: Content-Length: - - "1097" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:21 GMT + - Mon, 03 Jul 2023 20:15:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1770,7 +1770,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 784e2295-1ee4-4e78-893c-4820a4a4cb8b + - ebf8b611-76eb-4ae4-ba83-2b4662bca404 status: 200 OK code: 200 duration: "" @@ -1781,7 +1781,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/b4a417f7-0b1f-413d-bffd-db286a1badd0 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/acls/407625fe-64ee-4164-9c40-66ce22e80bc6 method: DELETE response: body: "" @@ -1791,7 +1791,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:22 GMT + - Mon, 03 Jul 2023 20:15:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1801,7 +1801,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2202e89b-e695-4094-91f4-645fcdfc8551 + - 15f246fb-ed8f-4449-9978-f7f860408406 status: 204 No Content code: 204 duration: "" @@ -1812,7 +1812,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/3918bd17-e673-400d-b65c-4937ba74d46a + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/frontends/6907d687-e889-4702-9473-35738b032ae4 method: DELETE response: body: "" @@ -1822,7 +1822,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:22 GMT + - Mon, 03 Jul 2023 20:15:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1832,7 +1832,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea9287f2-619d-4260-a083-08426eb9357e + - 46856ca5-7a52-4942-83fc-cec78c7c3114 status: 204 No Content code: 204 duration: "" @@ -1843,19 +1843,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fb0a57c1-8c52-422b-928e-d4c55e6fca81 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3200925f-4ee2-43d5-bbfa-19e7f719902b method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":0,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[{"created_at":"2023-06-29T13:32:14.650814Z","id":"fb5bb3fa-a0ba-4c34-ad74-8450bbe5d145","ip_address":"10.194.174.75","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:34:22.640952Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":0,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[{"created_at":"2023-07-03T20:12:54.693081Z","id":"446158a2-e587-4ffb-9eb3-969288b5ba8a","ip_address":"10.74.34.71","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:15:19.567771Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"}' headers: Content-Length: - - "1099" + - "1069" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:22 GMT + - Mon, 03 Jul 2023 20:15:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1865,7 +1865,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ea105f4-f15c-46e8-aef2-17e378f7c294 + - 78f35a12-0435-4f73-84c6-bb50f16710d5 status: 200 OK code: 200 duration: "" @@ -1876,19 +1876,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fb0a57c1-8c52-422b-928e-d4c55e6fca81 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3200925f-4ee2-43d5-bbfa-19e7f719902b method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":0,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[{"created_at":"2023-06-29T13:32:14.650814Z","id":"fb5bb3fa-a0ba-4c34-ad74-8450bbe5d145","ip_address":"10.194.174.75","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:34:22.958278Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":0,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[{"created_at":"2023-07-03T20:12:54.693081Z","id":"446158a2-e587-4ffb-9eb3-969288b5ba8a","ip_address":"10.74.34.71","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:15:19.830638Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"}' headers: Content-Length: - - "1097" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:23 GMT + - Mon, 03 Jul 2023 20:15:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1898,7 +1898,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - befec518-4137-4d50-8aa3-0f46c8aa0cfd + - ebea5bae-d83e-48c5-8fbf-42aaf9965391 status: 200 OK code: 200 duration: "" @@ -1909,7 +1909,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/dcf323c1-1e0f-4a55-a6fc-357e283a4e9c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/3ac22766-c21c-4523-aa1e-efa9b26575b9 method: DELETE response: body: "" @@ -1919,7 +1919,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:23 GMT + - Mon, 03 Jul 2023 20:15:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1929,7 +1929,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8bae660-a23c-4c0e-b9f8-985dc35d5243 + - df81e618-a52f-48d0-8a12-5ac30a9be0d0 status: 204 No Content code: 204 duration: "" @@ -1940,19 +1940,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fb0a57c1-8c52-422b-928e-d4c55e6fca81 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3200925f-4ee2-43d5-bbfa-19e7f719902b method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":0,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[{"created_at":"2023-06-29T13:32:14.650814Z","id":"fb5bb3fa-a0ba-4c34-ad74-8450bbe5d145","ip_address":"10.194.174.75","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:34:23.186103Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":0,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[{"created_at":"2023-07-03T20:12:54.693081Z","id":"446158a2-e587-4ffb-9eb3-969288b5ba8a","ip_address":"10.74.34.71","region":"fr-par","status":"pending","updated_at":"2023-07-03T20:15:20.110769Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"}' headers: Content-Length: - - "1099" + - "1069" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:23 GMT + - Mon, 03 Jul 2023 20:15:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1962,7 +1962,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a667962-f950-493e-a118-03ba940e85b3 + - ba95cd94-7e70-48f9-aa85-7b6b0d95a7c4 status: 200 OK code: 200 duration: "" @@ -1973,19 +1973,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fb0a57c1-8c52-422b-928e-d4c55e6fca81 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3200925f-4ee2-43d5-bbfa-19e7f719902b method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":0,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[{"created_at":"2023-06-29T13:32:14.650814Z","id":"fb5bb3fa-a0ba-4c34-ad74-8450bbe5d145","ip_address":"10.194.174.75","region":"fr-par","status":"pending","updated_at":"2023-06-29T13:34:23.186103Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-29T13:33:47.265224Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":0,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[{"created_at":"2023-07-03T20:12:54.693081Z","id":"446158a2-e587-4ffb-9eb3-969288b5ba8a","ip_address":"10.74.34.71","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:15:20.372807Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-07-03T20:14:43.314491Z","zone":"fr-par-1"}' headers: Content-Length: - - "1099" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:23 GMT + - Mon, 03 Jul 2023 20:15:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1995,7 +1995,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ab8396b-be38-495b-9391-142e4b890f9e + - 1c0ec557-dfb9-4e56-b445-18310dd4ca08 status: 200 OK code: 200 duration: "" @@ -2006,7 +2006,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fb0a57c1-8c52-422b-928e-d4c55e6fca81?release_ip=false + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3200925f-4ee2-43d5-bbfa-19e7f719902b?release_ip=false method: DELETE response: body: "" @@ -2016,7 +2016,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:23 GMT + - Mon, 03 Jul 2023 20:15:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2026,7 +2026,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 26967cce-c900-4d7c-8505-2d27a45a8e08 + - c7affd62-caf0-438d-b485-a628f9f361e0 status: 204 No Content code: 204 duration: "" @@ -2037,19 +2037,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fb0a57c1-8c52-422b-928e-d4c55e6fca81 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3200925f-4ee2-43d5-bbfa-19e7f719902b method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-29T13:33:44.680738Z","description":"","frontend_count":0,"id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","instances":[{"created_at":"2023-06-29T13:32:14.650814Z","id":"fb5bb3fa-a0ba-4c34-ad74-8450bbe5d145","ip_address":"10.194.174.75","region":"fr-par","status":"ready","updated_at":"2023-06-29T13:34:23.443154Z","zone":"fr-par-1"}],"ip":[{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":"fb0a57c1-8c52-422b-928e-d4c55e6fca81","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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":"2023-06-29T13:34:23.581869Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-07-03T20:14:41.397112Z","description":"","frontend_count":0,"id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","instances":[{"created_at":"2023-07-03T20:12:54.693081Z","id":"446158a2-e587-4ffb-9eb3-969288b5ba8a","ip_address":"10.74.34.71","region":"fr-par","status":"ready","updated_at":"2023-07-03T20:15:20.372807Z","zone":"fr-par-1"}],"ip":[{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":"3200925f-4ee2-43d5-bbfa-19e7f719902b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-acl","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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":"2023-07-03T20:15:20.554529Z","zone":"fr-par-1"}' headers: Content-Length: - - "1101" + - "1071" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:23 GMT + - Mon, 03 Jul 2023 20:15:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2059,7 +2059,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41c67276-3704-4620-b48e-4e658d0db770 + - c3a24c4b-98cf-4fee-9008-603b25999c03 status: 200 OK code: 200 duration: "" @@ -2070,7 +2070,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fb0a57c1-8c52-422b-928e-d4c55e6fca81 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3200925f-4ee2-43d5-bbfa-19e7f719902b method: GET response: body: '{"message":"lbs not Found"}' @@ -2082,7 +2082,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:53 GMT + - Mon, 03 Jul 2023 20:15:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2092,7 +2092,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f7223b9-ad80-453a-8d7c-c492e44aadf5 + - 53d08f84-8528-47bf-b4ee-8acaf572b2c0 status: 404 Not Found code: 404 duration: "" @@ -2103,7 +2103,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/fb0a57c1-8c52-422b-928e-d4c55e6fca81 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3200925f-4ee2-43d5-bbfa-19e7f719902b method: GET response: body: '{"message":"lbs not Found"}' @@ -2115,7 +2115,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:53 GMT + - Mon, 03 Jul 2023 20:15:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2125,7 +2125,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3492b7b0-dded-4c49-be54-a7e5cbb008d6 + - e2f58b60-f4a4-46c8-a1cb-7577701055aa status: 404 Not Found code: 404 duration: "" @@ -2136,19 +2136,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "285" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:54 GMT + - Mon, 03 Jul 2023 20:15:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2158,7 +2158,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67fab5a0-a0ed-4d73-ab4c-bcef7ba89243 + - 85b830f1-665e-463a-9ec6-e42775109b08 status: 200 OK code: 200 duration: "" @@ -2169,19 +2169,19 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: GET response: - body: '{"id":"0e3b7619-f1d2-4492-977c-8cb729cc6be3","ip_address":"51.159.27.185","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-27-185.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"86df9ff8-7a77-492d-9b03-4f6205127499","ip_address":"195.154.197.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-197-174.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "285" + - "282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:54 GMT + - Mon, 03 Jul 2023 20:15:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2191,7 +2191,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2d1cce2-dcfd-480b-8d6a-52bcdd85f684 + - c80df340-6f96-4109-9746-1c84343ef623 status: 200 OK code: 200 duration: "" @@ -2202,7 +2202,7 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e3b7619-f1d2-4492-977c-8cb729cc6be3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/86df9ff8-7a77-492d-9b03-4f6205127499 method: DELETE response: body: "" @@ -2212,7 +2212,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jun 2023 13:34:55 GMT + - Mon, 03 Jul 2023 20:15:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2222,7 +2222,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c23ce230-3f0c-46e7-81f3-804c77b4ecad + - 4b60e6b7-7caa-4093-aae3-f158b9c106e2 status: 204 No Content code: 204 duration: ""