diff --git a/docs/resources/lb_backend.md b/docs/resources/lb_backend.md index 234f767269..de8ae9bd8c 100644 --- a/docs/resources/lb_backend.md +++ b/docs/resources/lb_backend.md @@ -62,6 +62,8 @@ The following arguments are supported: e.g. 'failover-website.s3-website.fr-par.scw.cloud' if your bucket website URL is 'https://failover-website.s3-website.fr-par.scw.cloud/'. - `ssl_bridging` - (Default: `false`) Enables SSL between load balancer and backend servers. - `ignore_ssl_server_verify` - (Default: `false`) Specifies whether the Load Balancer should check the backend server’s certificate before initiating a connection. +- `max_connections` - (Optional) Maximum number of connections allowed per backend server. +- `timeout_queue` - (Optional) Maximum time for a request to be left pending in queue when `max_connections` is reached. (e.g.: `1s`) ### Health Check arguments diff --git a/go.mod b/go.mod index 83de92e35a..480c4be397 100644 --- a/go.mod +++ b/go.mod @@ -16,7 +16,7 @@ require ( github.com/nats-io/jwt/v2 v2.4.1 github.com/nats-io/nats.go v1.26.0 github.com/robfig/cron/v3 v3.0.1 - github.com/scaleway/scaleway-sdk-go v1.0.0-beta.17.0.20230619154501-6a12f2ddaa47 + github.com/scaleway/scaleway-sdk-go v1.0.0-beta.17.0.20230626132518-b0dfa1defaaf github.com/stretchr/testify v1.8.4 ) diff --git a/go.sum b/go.sum index 96620aece0..2d95842e6d 100644 --- a/go.sum +++ b/go.sum @@ -253,8 +253,8 @@ github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1: github.com/robfig/cron/v3 v3.0.1 h1:WdRxkvbJztn8LMz/QEvLN5sBU+xKpSqwwUO1Pjr4qDs= github.com/robfig/cron/v3 v3.0.1/go.mod h1:eQICP3HwyT7UooqI/z+Ov+PtYAWygg1TEWWzGIFLtro= github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= -github.com/scaleway/scaleway-sdk-go v1.0.0-beta.17.0.20230619154501-6a12f2ddaa47 h1:eGARFgFhRDgxFF6QwimHe+MV21xhuPKLPNhJyML3JkA= -github.com/scaleway/scaleway-sdk-go v1.0.0-beta.17.0.20230619154501-6a12f2ddaa47/go.mod h1:fCa7OJZ/9DRTnOKmxvT6pn+LPWUptQAmHF/SBJUGEcg= +github.com/scaleway/scaleway-sdk-go v1.0.0-beta.17.0.20230626132518-b0dfa1defaaf h1:df06kcC2caUTghLW6aTSyL3GUeM79BPvbtMyng187aE= +github.com/scaleway/scaleway-sdk-go v1.0.0-beta.17.0.20230626132518-b0dfa1defaaf/go.mod h1:fCa7OJZ/9DRTnOKmxvT6pn+LPWUptQAmHF/SBJUGEcg= github.com/sergi/go-diff v1.1.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM= github.com/sergi/go-diff v1.2.0 h1:XU+rvMAioB0UC3q1MFrIQy4Vo5/4VsRDQQXHsEya6xQ= github.com/shopspring/decimal v1.2.0/go.mod h1:DKyhrW/HYNuLGql+MJL6WCR6knT2jwCFRcu2hWCYk4o= diff --git a/scaleway/resource_lb_backend.go b/scaleway/resource_lb_backend.go index 3914e6e1e7..e52f30b0b4 100644 --- a/scaleway/resource_lb_backend.go +++ b/scaleway/resource_lb_backend.go @@ -2,6 +2,8 @@ package scaleway import ( "context" + "math" + "time" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" @@ -274,6 +276,18 @@ E.g. 'failover-website.s3-website.fr-par.scw.cloud' if your bucket website URL i Optional: true, Default: false, }, + "max_connections": { + Type: schema.TypeInt, + Optional: true, + ValidateFunc: validation.IntBetween(0, math.MaxInt32), + Description: "Maximum number of connections allowed per backend server", + }, + "timeout_queue": { + Type: schema.TypeString, + Optional: true, + ValidateFunc: validateDuration(), + Description: "Maximum time (in seconds) for a request to be left pending in queue when `max_connections` is reached", + }, }, } } @@ -352,6 +366,17 @@ func resourceScalewayLbBackendCreate(ctx context.Context, d *schema.ResourceData IgnoreSslServerVerify: expandBoolPtr(getBool(d, "ignore_ssl_server_verify")), } + if maxConn, ok := d.GetOk("max_connections"); ok { + createReq.MaxConnections = expandInt32Ptr(maxConn) + } + if timeoutQueue, ok := d.GetOk("timeout_queue"); ok { + timeout, err := time.ParseDuration(timeoutQueue.(string)) + if err != nil { + return diag.FromErr(err) + } + createReq.TimeoutQueue = &scw.Duration{Seconds: int64(timeout.Seconds())} + } + // deprecated attribute createReq.SendProxyV2 = expandBoolPtr(getBool(d, "send_proxy_v2")) @@ -416,6 +441,11 @@ func resourceScalewayLbBackendRead(ctx context.Context, d *schema.ResourceData, _ = d.Set("failover_host", backend.FailoverHost) _ = d.Set("ssl_bridging", flattenBoolPtr(backend.SslBridging)) _ = d.Set("ignore_ssl_server_verify", flattenBoolPtr(backend.IgnoreSslServerVerify)) + _ = d.Set("max_connections", flattenInt32Ptr(backend.MaxConnections)) + + if backend.TimeoutQueue != nil { + _ = d.Set("timeout_queue", flattenDuration(backend.TimeoutQueue.ToTimeDuration())) + } _, err = waitForLB(ctx, lbAPI, zone, backend.LB.ID, d.Timeout(schema.TimeoutRead)) if err != nil { @@ -480,6 +510,15 @@ func resourceScalewayLbBackendUpdate(ctx context.Context, d *schema.ResourceData FailoverHost: expandStringPtr(d.Get("failover_host")), SslBridging: expandBoolPtr(getBool(d, "ssl_bridging")), IgnoreSslServerVerify: expandBoolPtr(getBool(d, "ignore_ssl_server_verify")), + MaxConnections: expandInt32Ptr(d.Get("max_connections")), + } + + if timeoutQueue, ok := d.GetOk("timeout_queue"); ok { + timeoutQueueParsed, err := time.ParseDuration(timeoutQueue.(string)) + if err != nil { + return diag.FromErr(err) + } + req.TimeoutQueue = &scw.Duration{Seconds: int64(timeoutQueueParsed.Seconds())} } // deprecated diff --git a/scaleway/resource_lb_backend_test.go b/scaleway/resource_lb_backend_test.go index a4e186865e..0304b6ddbf 100644 --- a/scaleway/resource_lb_backend_test.go +++ b/scaleway/resource_lb_backend_test.go @@ -86,6 +86,8 @@ func TestAccScalewayLbBackend_Basic(t *testing.T) { on_marked_down_action = "shutdown_sessions" ssl_bridging = "true" ignore_ssl_server_verify = "true" + max_connections = 42 + timeout_queue = "4s" } `, Check: resource.ComposeTestCheckFunc( @@ -99,6 +101,8 @@ func TestAccScalewayLbBackend_Basic(t *testing.T) { resource.TestCheckResourceAttr("scaleway_lb_backend.bkd01", "on_marked_down_action", "shutdown_sessions"), resource.TestCheckResourceAttr("scaleway_lb_backend.bkd01", "ssl_bridging", "true"), resource.TestCheckResourceAttr("scaleway_lb_backend.bkd01", "ignore_ssl_server_verify", "true"), + resource.TestCheckResourceAttr("scaleway_lb_backend.bkd01", "max_connections", "42"), + resource.TestCheckResourceAttr("scaleway_lb_backend.bkd01", "timeout_queue", "4s"), ), }, }, diff --git a/scaleway/testdata/lb-backend-basic.cassette.yaml b/scaleway/testdata/lb-backend-basic.cassette.yaml index e6a5b3b7ae..95a8680003 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":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "287" + - "285" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:23 GMT + - Mon, 26 Jun 2023 13:34:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -32,7 +32,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af9a3713-2821-426d-bea9-954ce8291d7e + - cc40a344-dd31-4521-833e-cc35b518b0fc 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/d579d6e6-b00e-400b-b8dd-45410adbfb32 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c method: GET response: - body: '{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "287" + - "285" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:23 GMT + - Mon, 26 Jun 2023 13:34:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -65,12 +65,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7e62fd9-8e05-4820-8a49-4076f078b6c5 + - 2259b3fa-45c0-4a3b-8c38-18e305bfa83e status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-lb","description":"","ip_id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","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":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","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-16T09:27:23.308630259Z","description":"","frontend_count":0,"id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","instances":[],"ip":[{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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-16T09:27:23.308630259Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-06-26T13:34:22.990285766Z","description":"","frontend_count":0,"id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","instances":[],"ip":[{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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-26T13:34:22.990285766Z","zone":"fr-par-1"}' headers: Content-Length: - - "886" + - "884" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:23 GMT + - Mon, 26 Jun 2023 13:34:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -100,30 +100,34 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1841831-e480-417e-855f-e945764b9358 + - 7221122f-7451-4f90-8d61-7aa213acf866 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/ecdde303-29d5-4f1c-a2a9-94c44acd12ed - 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-16T09:27:23.308630Z","description":"","frontend_count":0,"id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","instances":[],"ip":[{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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-16T09:27:23.308630Z","zone":"fr-par-1"}' + body: '{"ip":{"address":"163.172.142.161","id":"5cc5a471-b5b6-4161-8dd1-ef822401cc26","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null,"server":null,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "880" + - "256" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:23 GMT + - Mon, 26 Jun 2023 13:34:23 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5cc5a471-b5b6-4161-8dd1-ef822401cc26 Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -133,34 +137,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f36ec4d7-69da-403d-a433-d29b385d5a6a - status: 200 OK - code: 200 + - 936834d6-4620-4007-a7ca-bcfdc6e78692 + status: 201 Created + code: 201 duration: "" - request: - body: '{"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5"}' + 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/221827d8-7bfc-4e82-bf5b-0daa95cc4ba8 + method: GET response: - body: '{"ip":{"address":"163.172.169.96","id":"237eb35e-a07e-448c-8948-a54824077849","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null,"server":null,"tags":[],"zone":"fr-par-1"}}' + body: '{"backend_count":0,"created_at":"2023-06-26T13:34:22.990286Z","description":"","frontend_count":0,"id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","instances":[],"ip":[{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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-26T13:34:22.990286Z","zone":"fr-par-1"}' headers: Content-Length: - - "255" + - "878" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:23 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/237eb35e-a07e-448c-8948-a54824077849 + - Mon, 26 Jun 2023 13:34:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -170,9 +170,9 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c42878c7-4036-427c-80b4-e61dd3459b23 - status: 201 Created - code: 201 + - d2c22679-821c-4e2f-8456-4a148b89c329 + status: 200 OK + code: 200 duration: "" - request: body: "" @@ -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/237eb35e-a07e-448c-8948-a54824077849 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5cc5a471-b5b6-4161-8dd1-ef822401cc26 method: GET response: - body: '{"ip":{"address":"163.172.169.96","id":"237eb35e-a07e-448c-8948-a54824077849","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null,"server":null,"tags":[],"zone":"fr-par-1"}}' + body: '{"ip":{"address":"163.172.142.161","id":"5cc5a471-b5b6-4161-8dd1-ef822401cc26","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null,"server":null,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "255" + - "256" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:23 GMT + - Mon, 26 Jun 2023 13:34:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -203,7 +203,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ae8f596-b2d0-4e6f-b684-9f12c5df2a33 + - e6d9f27b-ae53-4392-848f-d73ab81d8658 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/ecdde303-29d5-4f1c-a2a9-94c44acd12ed + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/221827d8-7bfc-4e82-bf5b-0daa95cc4ba8 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-16T09:27:23.308630Z","description":"","frontend_count":0,"id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","instances":[{"created_at":"2023-06-16T09:26:21.383340Z","id":"2cf30730-797f-4291-ab55-7290bfd70991","ip_address":"10.74.84.55","region":"fr-par","status":"ready","updated_at":"2023-06-16T09:27:23.985374Z","zone":"fr-par-1"}],"ip":[{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-16T09:27:25.360933Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-06-26T13:34:22.990286Z","description":"","frontend_count":0,"id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","instances":[{"created_at":"2023-06-26T13:06:34.618141Z","id":"2f1a9112-ac99-4450-af0a-767bab5e16a1","ip_address":"10.76.50.75","region":"fr-par","status":"ready","updated_at":"2023-06-26T13:34:23.999467Z","zone":"fr-par-1"}],"ip":[{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-26T13:34:25.108043Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1091" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:53 GMT + - Mon, 26 Jun 2023 13:34:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -236,7 +236,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73f14eab-c2bc-4e8a-bf45-45054dc47494 + - 43419d27-834b-4eef-a3e0-75ff657caff6 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/ecdde303-29d5-4f1c-a2a9-94c44acd12ed + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/221827d8-7bfc-4e82-bf5b-0daa95cc4ba8 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-16T09:27:23.308630Z","description":"","frontend_count":0,"id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","instances":[{"created_at":"2023-06-16T09:26:21.383340Z","id":"2cf30730-797f-4291-ab55-7290bfd70991","ip_address":"10.74.84.55","region":"fr-par","status":"ready","updated_at":"2023-06-16T09:27:23.985374Z","zone":"fr-par-1"}],"ip":[{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-16T09:27:25.360933Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-06-26T13:34:22.990286Z","description":"","frontend_count":0,"id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","instances":[{"created_at":"2023-06-26T13:06:34.618141Z","id":"2f1a9112-ac99-4450-af0a-767bab5e16a1","ip_address":"10.76.50.75","region":"fr-par","status":"ready","updated_at":"2023-06-26T13:34:23.999467Z","zone":"fr-par-1"}],"ip":[{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-26T13:34:25.108043Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1091" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:53 GMT + - Mon, 26 Jun 2023 13:34:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -269,7 +269,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12b75542-8adf-489e-8fa5-e1ea247f8ebb + - ee07ebc7-593e-4781-a550-62810f9cc2c7 status: 200 OK code: 200 duration: "" @@ -280,7 +280,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/ecdde303-29d5-4f1c-a2a9-94c44acd12ed/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/221827d8-7bfc-4e82-bf5b-0daa95cc4ba8/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' @@ -292,7 +292,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:53 GMT + - Mon, 26 Jun 2023 13:34:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -302,7 +302,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 51b5cf27-14aa-4e70-bdd1-1ef32f3a60ba + - 98b33222-dde0-4eef-b7b4-f7181cc95a6b 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/ecdde303-29d5-4f1c-a2a9-94c44acd12ed + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/221827d8-7bfc-4e82-bf5b-0daa95cc4ba8 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-16T09:27:23.308630Z","description":"","frontend_count":0,"id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","instances":[{"created_at":"2023-06-16T09:26:21.383340Z","id":"2cf30730-797f-4291-ab55-7290bfd70991","ip_address":"10.74.84.55","region":"fr-par","status":"ready","updated_at":"2023-06-16T09:27:23.985374Z","zone":"fr-par-1"}],"ip":[{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-16T09:27:25.360933Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-06-26T13:34:22.990286Z","description":"","frontend_count":0,"id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","instances":[{"created_at":"2023-06-26T13:06:34.618141Z","id":"2f1a9112-ac99-4450-af0a-767bab5e16a1","ip_address":"10.76.50.75","region":"fr-par","status":"ready","updated_at":"2023-06-26T13:34:23.999467Z","zone":"fr-par-1"}],"ip":[{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-26T13:34:25.108043Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1091" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:53 GMT + - Mon, 26 Jun 2023 13:34:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -335,12 +335,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 372b4c84-7e7b-4064-81aa-1ed48ec94242 + - c3e4e7e0-c815-425e-a2f6-a591d506baf9 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":["163.172.169.96"],"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":null,"max_connections":null,"timeout_queue":null,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null}' + 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":["163.172.142.161"],"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":null,"max_connections":null,"timeout_queue":null,"timeout_server":null,"timeout_connect":null,"timeout_tunnel":null}' 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/ecdde303-29d5-4f1c-a2a9-94c44acd12ed/backends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/221827d8-7bfc-4e82-bf5b-0daa95cc4ba8/backends method: POST response: - body: '{"created_at":"2023-06-16T09:27:53.893252189Z","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":"7b8c0681-c6ed-417d-9255-424ef729849b","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-16T09:27:23.308630Z","description":"","frontend_count":0,"id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","instances":[{"created_at":"2023-06-16T09:26:21.383340Z","id":"2cf30730-797f-4291-ab55-7290bfd70991","ip_address":"10.74.84.55","region":"fr-par","status":"pending","updated_at":"2023-06-16T09:27:53.919067371Z","zone":"fr-par-1"}],"ip":[{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-16T09:27:25.360933Z","zone":"fr-par-1"},"max_connections":null,"max_retries":null,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["163.172.169.96"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":null,"timeout_queue":null,"timeout_server":null,"timeout_tunnel":null,"updated_at":"2023-06-16T09:27:53.893252189Z"}' + body: '{"created_at":"2023-06-26T13:34:53.601770115Z","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":"f8942343-61d4-4828-9f8b-5451cd4147b4","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-26T13:34:22.990286Z","description":"","frontend_count":0,"id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","instances":[{"created_at":"2023-06-26T13:06:34.618141Z","id":"2f1a9112-ac99-4450-af0a-767bab5e16a1","ip_address":"10.76.50.75","region":"fr-par","status":"pending","updated_at":"2023-06-26T13:34:53.633376808Z","zone":"fr-par-1"}],"ip":[{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-26T13:34:25.108043Z","zone":"fr-par-1"},"max_connections":null,"max_retries":null,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["163.172.142.161"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":null,"timeout_queue":null,"timeout_server":null,"timeout_tunnel":null,"updated_at":"2023-06-26T13:34:53.601770115Z"}' headers: Content-Length: - - "1963" + - "1962" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:54 GMT + - Mon, 26 Jun 2023 13:34:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -370,7 +370,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 820f759c-7fb5-4ded-9fb1-0e62de18487c + - f3633b80-87cb-4a80-8fd0-c5443f39fca0 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/ecdde303-29d5-4f1c-a2a9-94c44acd12ed + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/221827d8-7bfc-4e82-bf5b-0daa95cc4ba8 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-16T09:27:23.308630Z","description":"","frontend_count":0,"id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","instances":[{"created_at":"2023-06-16T09:26:21.383340Z","id":"2cf30730-797f-4291-ab55-7290bfd70991","ip_address":"10.74.84.55","region":"fr-par","status":"pending","updated_at":"2023-06-16T09:27:53.919067Z","zone":"fr-par-1"}],"ip":[{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-16T09:27:25.360933Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-06-26T13:34:22.990286Z","description":"","frontend_count":0,"id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","instances":[{"created_at":"2023-06-26T13:06:34.618141Z","id":"2f1a9112-ac99-4450-af0a-767bab5e16a1","ip_address":"10.76.50.75","region":"fr-par","status":"pending","updated_at":"2023-06-26T13:34:53.633377Z","zone":"fr-par-1"}],"ip":[{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-26T13:34:25.108043Z","zone":"fr-par-1"}' headers: Content-Length: - - "1095" + - "1093" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:54 GMT + - Mon, 26 Jun 2023 13:34:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -403,7 +403,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ebc5a6d6-fddf-4243-8a88-40c0280cbdc1 + - 7578d090-56bb-4c46-8aee-28a1d7a4d099 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/7b8c0681-c6ed-417d-9255-424ef729849b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f8942343-61d4-4828-9f8b-5451cd4147b4 method: GET response: - body: '{"created_at":"2023-06-16T09:27:53.893252Z","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":"7b8c0681-c6ed-417d-9255-424ef729849b","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-16T09:27:23.308630Z","description":"","frontend_count":0,"id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","instances":[{"created_at":"2023-06-16T09:26:21.383340Z","id":"2cf30730-797f-4291-ab55-7290bfd70991","ip_address":"10.74.84.55","region":"fr-par","status":"pending","updated_at":"2023-06-16T09:27:53.919067Z","zone":"fr-par-1"}],"ip":[{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-16T09:27:25.360933Z","zone":"fr-par-1"},"max_connections":null,"max_retries":null,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["163.172.169.96"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":null,"timeout_queue":null,"timeout_server":null,"timeout_tunnel":null,"updated_at":"2023-06-16T09:27:53.893252Z"}' + body: '{"created_at":"2023-06-26T13:34:53.601770Z","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":"f8942343-61d4-4828-9f8b-5451cd4147b4","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-26T13:34:22.990286Z","description":"","frontend_count":0,"id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","instances":[{"created_at":"2023-06-26T13:06:34.618141Z","id":"2f1a9112-ac99-4450-af0a-767bab5e16a1","ip_address":"10.76.50.75","region":"fr-par","status":"pending","updated_at":"2023-06-26T13:34:53.633377Z","zone":"fr-par-1"}],"ip":[{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-26T13:34:25.108043Z","zone":"fr-par-1"},"max_connections":null,"max_retries":null,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["163.172.142.161"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":null,"timeout_queue":null,"timeout_server":null,"timeout_tunnel":null,"updated_at":"2023-06-26T13:34:53.601770Z"}' headers: Content-Length: - - "1954" + - "1953" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:54 GMT + - Mon, 26 Jun 2023 13:34:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -436,7 +436,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b582887-a821-42e5-b006-d75a0ec95a8c + - 5da15bff-c673-451f-9b53-13a4851356c7 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/ecdde303-29d5-4f1c-a2a9-94c44acd12ed + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/221827d8-7bfc-4e82-bf5b-0daa95cc4ba8 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-16T09:27:23.308630Z","description":"","frontend_count":0,"id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","instances":[{"created_at":"2023-06-16T09:26:21.383340Z","id":"2cf30730-797f-4291-ab55-7290bfd70991","ip_address":"10.74.84.55","region":"fr-par","status":"ready","updated_at":"2023-06-16T09:27:54.195488Z","zone":"fr-par-1"}],"ip":[{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-16T09:27:25.360933Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-06-26T13:34:22.990286Z","description":"","frontend_count":0,"id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","instances":[{"created_at":"2023-06-26T13:06:34.618141Z","id":"2f1a9112-ac99-4450-af0a-767bab5e16a1","ip_address":"10.76.50.75","region":"fr-par","status":"ready","updated_at":"2023-06-26T13:34:53.840556Z","zone":"fr-par-1"}],"ip":[{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-26T13:34:25.108043Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1091" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:54 GMT + - Mon, 26 Jun 2023 13:34:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -469,7 +469,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 323e54a0-d7b0-4080-9822-a8a4d316b6b1 + - 9473a061-831c-4cfe-a142-2c3ed9e23787 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/7b8c0681-c6ed-417d-9255-424ef729849b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f8942343-61d4-4828-9f8b-5451cd4147b4 method: GET response: - body: '{"created_at":"2023-06-16T09:27:53.893252Z","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":"7b8c0681-c6ed-417d-9255-424ef729849b","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-16T09:27:23.308630Z","description":"","frontend_count":0,"id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","instances":[{"created_at":"2023-06-16T09:26:21.383340Z","id":"2cf30730-797f-4291-ab55-7290bfd70991","ip_address":"10.74.84.55","region":"fr-par","status":"ready","updated_at":"2023-06-16T09:27:54.195488Z","zone":"fr-par-1"}],"ip":[{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-16T09:27:25.360933Z","zone":"fr-par-1"},"max_connections":null,"max_retries":null,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["163.172.169.96"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":null,"timeout_queue":null,"timeout_server":null,"timeout_tunnel":null,"updated_at":"2023-06-16T09:27:53.893252Z"}' + body: '{"created_at":"2023-06-26T13:34:53.601770Z","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":"f8942343-61d4-4828-9f8b-5451cd4147b4","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-26T13:34:22.990286Z","description":"","frontend_count":0,"id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","instances":[{"created_at":"2023-06-26T13:06:34.618141Z","id":"2f1a9112-ac99-4450-af0a-767bab5e16a1","ip_address":"10.76.50.75","region":"fr-par","status":"ready","updated_at":"2023-06-26T13:34:53.840556Z","zone":"fr-par-1"}],"ip":[{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-26T13:34:25.108043Z","zone":"fr-par-1"},"max_connections":null,"max_retries":null,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["163.172.142.161"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":null,"timeout_queue":null,"timeout_server":null,"timeout_tunnel":null,"updated_at":"2023-06-26T13:34:53.601770Z"}' headers: Content-Length: - - "1952" + - "1951" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:54 GMT + - Mon, 26 Jun 2023 13:34:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -502,7 +502,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f3a4e15-891b-499c-92c9-78c043777cff + - fb4a4b1f-696a-4c0a-89a2-2be2f4439070 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/d579d6e6-b00e-400b-b8dd-45410adbfb32 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c method: GET response: - body: '{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "321" + - "319" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:54 GMT + - Mon, 26 Jun 2023 13:34:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -535,7 +535,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a81b4e7-e417-4f5a-965f-fddc6c48635c + - 85f75793-a073-4d29-97aa-050a6fc378ce 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/237eb35e-a07e-448c-8948-a54824077849 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5cc5a471-b5b6-4161-8dd1-ef822401cc26 method: GET response: - body: '{"ip":{"address":"163.172.169.96","id":"237eb35e-a07e-448c-8948-a54824077849","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null,"server":null,"tags":[],"zone":"fr-par-1"}}' + body: '{"ip":{"address":"163.172.142.161","id":"5cc5a471-b5b6-4161-8dd1-ef822401cc26","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null,"server":null,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "255" + - "256" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:54 GMT + - Mon, 26 Jun 2023 13:34:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -568,7 +568,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03f192bf-2979-4901-bc1b-3ead62653633 + - 6de66fc4-2523-48f2-bb5b-e2f728d7b017 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/ecdde303-29d5-4f1c-a2a9-94c44acd12ed + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/221827d8-7bfc-4e82-bf5b-0daa95cc4ba8 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-16T09:27:23.308630Z","description":"","frontend_count":0,"id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","instances":[{"created_at":"2023-06-16T09:26:21.383340Z","id":"2cf30730-797f-4291-ab55-7290bfd70991","ip_address":"10.74.84.55","region":"fr-par","status":"ready","updated_at":"2023-06-16T09:27:54.195488Z","zone":"fr-par-1"}],"ip":[{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-16T09:27:25.360933Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-06-26T13:34:22.990286Z","description":"","frontend_count":0,"id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","instances":[{"created_at":"2023-06-26T13:06:34.618141Z","id":"2f1a9112-ac99-4450-af0a-767bab5e16a1","ip_address":"10.76.50.75","region":"fr-par","status":"ready","updated_at":"2023-06-26T13:34:53.840556Z","zone":"fr-par-1"}],"ip":[{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-26T13:34:25.108043Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1091" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:55 GMT + - Mon, 26 Jun 2023 13:34:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -601,7 +601,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60cba420-c7a8-49c9-a1f9-1bf0c6dbbf80 + - 6ffe3b5c-2f71-47f6-8199-fc3b0b296110 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/ecdde303-29d5-4f1c-a2a9-94c44acd12ed + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/221827d8-7bfc-4e82-bf5b-0daa95cc4ba8 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-16T09:27:23.308630Z","description":"","frontend_count":0,"id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","instances":[{"created_at":"2023-06-16T09:26:21.383340Z","id":"2cf30730-797f-4291-ab55-7290bfd70991","ip_address":"10.74.84.55","region":"fr-par","status":"ready","updated_at":"2023-06-16T09:27:54.195488Z","zone":"fr-par-1"}],"ip":[{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-16T09:27:25.360933Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-06-26T13:34:22.990286Z","description":"","frontend_count":0,"id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","instances":[{"created_at":"2023-06-26T13:06:34.618141Z","id":"2f1a9112-ac99-4450-af0a-767bab5e16a1","ip_address":"10.76.50.75","region":"fr-par","status":"ready","updated_at":"2023-06-26T13:34:53.840556Z","zone":"fr-par-1"}],"ip":[{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-26T13:34:25.108043Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1091" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:55 GMT + - Mon, 26 Jun 2023 13:34:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -634,7 +634,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d4723c8-00d4-488f-90eb-4b2646836d25 + - 9201f750-055e-41c5-b0a4-40c78fe273f1 status: 200 OK code: 200 duration: "" @@ -645,7 +645,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/ecdde303-29d5-4f1c-a2a9-94c44acd12ed/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/221827d8-7bfc-4e82-bf5b-0daa95cc4ba8/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' @@ -657,7 +657,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:55 GMT + - Mon, 26 Jun 2023 13:34:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -667,7 +667,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53eb944f-95d5-48ea-ba72-9ead84302b71 + - 18e425a3-26c9-4a18-86b6-bb33d13dd09e 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/7b8c0681-c6ed-417d-9255-424ef729849b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f8942343-61d4-4828-9f8b-5451cd4147b4 method: GET response: - body: '{"created_at":"2023-06-16T09:27:53.893252Z","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":"7b8c0681-c6ed-417d-9255-424ef729849b","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-16T09:27:23.308630Z","description":"","frontend_count":0,"id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","instances":[{"created_at":"2023-06-16T09:26:21.383340Z","id":"2cf30730-797f-4291-ab55-7290bfd70991","ip_address":"10.74.84.55","region":"fr-par","status":"ready","updated_at":"2023-06-16T09:27:54.195488Z","zone":"fr-par-1"}],"ip":[{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-16T09:27:25.360933Z","zone":"fr-par-1"},"max_connections":null,"max_retries":null,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["163.172.169.96"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":null,"timeout_queue":null,"timeout_server":null,"timeout_tunnel":null,"updated_at":"2023-06-16T09:27:53.893252Z"}' + body: '{"created_at":"2023-06-26T13:34:53.601770Z","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":"f8942343-61d4-4828-9f8b-5451cd4147b4","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-26T13:34:22.990286Z","description":"","frontend_count":0,"id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","instances":[{"created_at":"2023-06-26T13:06:34.618141Z","id":"2f1a9112-ac99-4450-af0a-767bab5e16a1","ip_address":"10.76.50.75","region":"fr-par","status":"ready","updated_at":"2023-06-26T13:34:53.840556Z","zone":"fr-par-1"}],"ip":[{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-26T13:34:25.108043Z","zone":"fr-par-1"},"max_connections":null,"max_retries":null,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["163.172.142.161"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":null,"timeout_queue":null,"timeout_server":null,"timeout_tunnel":null,"updated_at":"2023-06-26T13:34:53.601770Z"}' headers: Content-Length: - - "1952" + - "1951" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:55 GMT + - Mon, 26 Jun 2023 13:34:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -700,7 +700,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aef09a2e-91de-4416-afd5-cfabf7f2073f + - 544ae9a6-8244-4bac-bd0f-9cd942f2ee94 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/ecdde303-29d5-4f1c-a2a9-94c44acd12ed + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/221827d8-7bfc-4e82-bf5b-0daa95cc4ba8 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-16T09:27:23.308630Z","description":"","frontend_count":0,"id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","instances":[{"created_at":"2023-06-16T09:26:21.383340Z","id":"2cf30730-797f-4291-ab55-7290bfd70991","ip_address":"10.74.84.55","region":"fr-par","status":"ready","updated_at":"2023-06-16T09:27:54.195488Z","zone":"fr-par-1"}],"ip":[{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-16T09:27:25.360933Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-06-26T13:34:22.990286Z","description":"","frontend_count":0,"id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","instances":[{"created_at":"2023-06-26T13:06:34.618141Z","id":"2f1a9112-ac99-4450-af0a-767bab5e16a1","ip_address":"10.76.50.75","region":"fr-par","status":"ready","updated_at":"2023-06-26T13:34:53.840556Z","zone":"fr-par-1"}],"ip":[{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-26T13:34:25.108043Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1091" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:55 GMT + - Mon, 26 Jun 2023 13:34:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -733,7 +733,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ba2376e-5eb0-4063-abdb-790a3a7169f7 + - 4419944a-65a0-4b68-8bd0-4300da00361e 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/d579d6e6-b00e-400b-b8dd-45410adbfb32 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5cc5a471-b5b6-4161-8dd1-ef822401cc26 method: GET response: - body: '{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"ip":{"address":"163.172.142.161","id":"5cc5a471-b5b6-4161-8dd1-ef822401cc26","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null,"server":null,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "321" + - "256" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:55 GMT + - Mon, 26 Jun 2023 13:34:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -766,7 +766,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b4aa0fd-34a3-45b9-a644-c09705c9ed69 + - df0f5c5c-9f93-4efd-8e11-0da039312827 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/237eb35e-a07e-448c-8948-a54824077849 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c method: GET response: - body: '{"ip":{"address":"163.172.169.96","id":"237eb35e-a07e-448c-8948-a54824077849","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null,"server":null,"tags":[],"zone":"fr-par-1"}}' + body: '{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "255" + - "319" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:55 GMT + - Mon, 26 Jun 2023 13:34:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -799,7 +799,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f63cd3f-1187-4a35-a183-c9bd07c7ef1b + - a4a0042d-72b6-4e39-ad7d-e33c899d184e 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/ecdde303-29d5-4f1c-a2a9-94c44acd12ed + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/221827d8-7bfc-4e82-bf5b-0daa95cc4ba8 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-16T09:27:23.308630Z","description":"","frontend_count":0,"id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","instances":[{"created_at":"2023-06-16T09:26:21.383340Z","id":"2cf30730-797f-4291-ab55-7290bfd70991","ip_address":"10.74.84.55","region":"fr-par","status":"ready","updated_at":"2023-06-16T09:27:54.195488Z","zone":"fr-par-1"}],"ip":[{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-16T09:27:25.360933Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-06-26T13:34:22.990286Z","description":"","frontend_count":0,"id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","instances":[{"created_at":"2023-06-26T13:06:34.618141Z","id":"2f1a9112-ac99-4450-af0a-767bab5e16a1","ip_address":"10.76.50.75","region":"fr-par","status":"ready","updated_at":"2023-06-26T13:34:53.840556Z","zone":"fr-par-1"}],"ip":[{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-26T13:34:25.108043Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1091" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:55 GMT + - Mon, 26 Jun 2023 13:34:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -832,7 +832,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2613b8b-286f-43c6-a0f2-c6cbe58d5d7b + - d2a44c4b-9edd-495d-ae76-e7304efbc79f 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/ecdde303-29d5-4f1c-a2a9-94c44acd12ed + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/221827d8-7bfc-4e82-bf5b-0daa95cc4ba8 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-16T09:27:23.308630Z","description":"","frontend_count":0,"id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","instances":[{"created_at":"2023-06-16T09:26:21.383340Z","id":"2cf30730-797f-4291-ab55-7290bfd70991","ip_address":"10.74.84.55","region":"fr-par","status":"ready","updated_at":"2023-06-16T09:27:54.195488Z","zone":"fr-par-1"}],"ip":[{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-16T09:27:25.360933Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-06-26T13:34:22.990286Z","description":"","frontend_count":0,"id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","instances":[{"created_at":"2023-06-26T13:06:34.618141Z","id":"2f1a9112-ac99-4450-af0a-767bab5e16a1","ip_address":"10.76.50.75","region":"fr-par","status":"ready","updated_at":"2023-06-26T13:34:53.840556Z","zone":"fr-par-1"}],"ip":[{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-26T13:34:25.108043Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1091" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:55 GMT + - Mon, 26 Jun 2023 13:34:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -865,7 +865,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 39713995-f119-4103-bb68-38b50ee991ae + - ceb790c9-1098-4ba8-95bc-bc4525b821d9 status: 200 OK code: 200 duration: "" @@ -876,7 +876,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/ecdde303-29d5-4f1c-a2a9-94c44acd12ed/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/221827d8-7bfc-4e82-bf5b-0daa95cc4ba8/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' @@ -888,7 +888,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:55 GMT + - Mon, 26 Jun 2023 13:34:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -898,7 +898,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d21405e3-bdad-4487-b725-53b7bea32977 + - 02d6689d-ce9c-4475-b273-d3b0e57432d3 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/7b8c0681-c6ed-417d-9255-424ef729849b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f8942343-61d4-4828-9f8b-5451cd4147b4 method: GET response: - body: '{"created_at":"2023-06-16T09:27:53.893252Z","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":"7b8c0681-c6ed-417d-9255-424ef729849b","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-16T09:27:23.308630Z","description":"","frontend_count":0,"id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","instances":[{"created_at":"2023-06-16T09:26:21.383340Z","id":"2cf30730-797f-4291-ab55-7290bfd70991","ip_address":"10.74.84.55","region":"fr-par","status":"ready","updated_at":"2023-06-16T09:27:54.195488Z","zone":"fr-par-1"}],"ip":[{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-16T09:27:25.360933Z","zone":"fr-par-1"},"max_connections":null,"max_retries":null,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["163.172.169.96"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":null,"timeout_queue":null,"timeout_server":null,"timeout_tunnel":null,"updated_at":"2023-06-16T09:27:53.893252Z"}' + body: '{"created_at":"2023-06-26T13:34:53.601770Z","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":"f8942343-61d4-4828-9f8b-5451cd4147b4","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2023-06-26T13:34:22.990286Z","description":"","frontend_count":0,"id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","instances":[{"created_at":"2023-06-26T13:06:34.618141Z","id":"2f1a9112-ac99-4450-af0a-767bab5e16a1","ip_address":"10.76.50.75","region":"fr-par","status":"ready","updated_at":"2023-06-26T13:34:53.840556Z","zone":"fr-par-1"}],"ip":[{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-26T13:34:25.108043Z","zone":"fr-par-1"},"max_connections":null,"max_retries":null,"name":"bkd01","on_marked_down_action":"on_marked_down_action_none","pool":["163.172.142.161"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":null,"timeout_queue":null,"timeout_server":null,"timeout_tunnel":null,"updated_at":"2023-06-26T13:34:53.601770Z"}' headers: Content-Length: - - "1952" + - "1951" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:56 GMT + - Mon, 26 Jun 2023 13:34:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -931,7 +931,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cae28890-22de-45b6-82c4-e86a5d67e8df + - 22f62a88-3edd-4cf0-87fb-4e80154b623b 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/ecdde303-29d5-4f1c-a2a9-94c44acd12ed + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/221827d8-7bfc-4e82-bf5b-0daa95cc4ba8 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-16T09:27:23.308630Z","description":"","frontend_count":0,"id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","instances":[{"created_at":"2023-06-16T09:26:21.383340Z","id":"2cf30730-797f-4291-ab55-7290bfd70991","ip_address":"10.74.84.55","region":"fr-par","status":"ready","updated_at":"2023-06-16T09:27:54.195488Z","zone":"fr-par-1"}],"ip":[{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-16T09:27:25.360933Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-06-26T13:34:22.990286Z","description":"","frontend_count":0,"id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","instances":[{"created_at":"2023-06-26T13:06:34.618141Z","id":"2f1a9112-ac99-4450-af0a-767bab5e16a1","ip_address":"10.76.50.75","region":"fr-par","status":"ready","updated_at":"2023-06-26T13:34:53.840556Z","zone":"fr-par-1"}],"ip":[{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-26T13:34:25.108043Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1091" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:56 GMT + - Mon, 26 Jun 2023 13:34:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -964,12 +964,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3277798-6cc0-4058-b9a2-b8a249d6c6bc + - 028f729d-cecf-4be2-8902-0d739be6dfa9 status: 200 OK code: 200 duration: "" - request: - body: '{"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5"}' + body: '{"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","type":"unknown_iptype"}' form: {} headers: Content-Type: @@ -980,18 +980,18 @@ interactions: url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip":{"address":"51.15.216.253","id":"d7255298-a020-4be0-815c-c5d379d587b9","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null,"server":null,"tags":[],"zone":"fr-par-1"}}' + body: '{"ip":{"address":"163.172.182.127","id":"51737998-4ae9-4dbf-ad08-6ac211bf4990","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null,"server":null,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "254" + - "256" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:57 GMT + - Mon, 26 Jun 2023 13:34:56 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/d7255298-a020-4be0-815c-c5d379d587b9 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/51737998-4ae9-4dbf-ad08-6ac211bf4990 Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1001,7 +1001,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6750b1c6-acc2-4e5c-871f-e33c13a9f7cf + - a44b10c4-f780-4bd8-94ac-ebe0e930ce3c 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/d7255298-a020-4be0-815c-c5d379d587b9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/51737998-4ae9-4dbf-ad08-6ac211bf4990 method: GET response: - body: '{"ip":{"address":"51.15.216.253","id":"d7255298-a020-4be0-815c-c5d379d587b9","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null,"server":null,"tags":[],"zone":"fr-par-1"}}' + body: '{"ip":{"address":"163.172.182.127","id":"51737998-4ae9-4dbf-ad08-6ac211bf4990","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null,"server":null,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "254" + - "256" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:57 GMT + - Mon, 26 Jun 2023 13:34:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1034,7 +1034,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1398260e-7824-472e-9fba-c490b6173ccf + - 1a916b0d-35e1-4ebe-a68b-cab1daa7a949 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/ecdde303-29d5-4f1c-a2a9-94c44acd12ed + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/221827d8-7bfc-4e82-bf5b-0daa95cc4ba8 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-16T09:27:23.308630Z","description":"","frontend_count":0,"id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","instances":[{"created_at":"2023-06-16T09:26:21.383340Z","id":"2cf30730-797f-4291-ab55-7290bfd70991","ip_address":"10.74.84.55","region":"fr-par","status":"ready","updated_at":"2023-06-16T09:27:54.195488Z","zone":"fr-par-1"}],"ip":[{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-16T09:27:25.360933Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-06-26T13:34:22.990286Z","description":"","frontend_count":0,"id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","instances":[{"created_at":"2023-06-26T13:06:34.618141Z","id":"2f1a9112-ac99-4450-af0a-767bab5e16a1","ip_address":"10.76.50.75","region":"fr-par","status":"ready","updated_at":"2023-06-26T13:34:53.840556Z","zone":"fr-par-1"}],"ip":[{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-26T13:34:25.108043Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1091" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:57 GMT + - Mon, 26 Jun 2023 13:34:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1067,12 +1067,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 016c164c-fff9-4ea5-9ca3-6edb3b810c5a + - aaf6edce-eb3f-4a03-b06a-4898b4a8823d status: 200 OK code: 200 duration: "" - request: - body: '{"name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"leastconn","sticky_sessions":"cookie","sticky_sessions_cookie_name":"session-id","send_proxy_v2":false,"on_marked_down_action":"shutdown_sessions","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":true,"ignore_ssl_server_verify":true,"redispatch_attempt_count":null,"max_retries":null,"max_connections":null,"timeout_queue":null,"timeout_server":1000,"timeout_connect":2500,"timeout_tunnel":3000}' + body: '{"name":"bkd01","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"leastconn","sticky_sessions":"cookie","sticky_sessions_cookie_name":"session-id","send_proxy_v2":false,"on_marked_down_action":"shutdown_sessions","proxy_protocol":"proxy_protocol_none","failover_host":null,"ssl_bridging":true,"ignore_ssl_server_verify":true,"redispatch_attempt_count":null,"max_retries":null,"max_connections":42,"timeout_queue":"4.000000000s","timeout_server":1000,"timeout_connect":2500,"timeout_tunnel":3000}' form: {} headers: Content-Type: @@ -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/7b8c0681-c6ed-417d-9255-424ef729849b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f8942343-61d4-4828-9f8b-5451cd4147b4 method: PUT response: - body: '{"created_at":"2023-06-16T09:27:53.893252Z","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":"7b8c0681-c6ed-417d-9255-424ef729849b","ignore_ssl_server_verify":true,"lb":{"backend_count":1,"created_at":"2023-06-16T09:27:23.308630Z","description":"","frontend_count":0,"id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","instances":[{"created_at":"2023-06-16T09:26:21.383340Z","id":"2cf30730-797f-4291-ab55-7290bfd70991","ip_address":"10.74.84.55","region":"fr-par","status":"ready","updated_at":"2023-06-16T09:27:54.195488Z","zone":"fr-par-1"}],"ip":[{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-16T09:27:25.360933Z","zone":"fr-par-1"},"max_connections":null,"max_retries":null,"name":"bkd01","on_marked_down_action":"shutdown_sessions","pool":["163.172.169.96"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":true,"sticky_sessions":"cookie","sticky_sessions_cookie_name":"session-id","timeout_connect":2500,"timeout_queue":null,"timeout_server":1000,"timeout_tunnel":3000,"updated_at":"2023-06-16T09:27:57.477651077Z"}' + body: '{"created_at":"2023-06-26T13:34:53.601770Z","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":"f8942343-61d4-4828-9f8b-5451cd4147b4","ignore_ssl_server_verify":true,"lb":{"backend_count":1,"created_at":"2023-06-26T13:34:22.990286Z","description":"","frontend_count":0,"id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","instances":[{"created_at":"2023-06-26T13:06:34.618141Z","id":"2f1a9112-ac99-4450-af0a-767bab5e16a1","ip_address":"10.76.50.75","region":"fr-par","status":"ready","updated_at":"2023-06-26T13:34:53.840556Z","zone":"fr-par-1"}],"ip":[{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-26T13:34:25.108043Z","zone":"fr-par-1"},"max_connections":42,"max_retries":null,"name":"bkd01","on_marked_down_action":"shutdown_sessions","pool":["163.172.142.161"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"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-26T13:34:56.899326950Z"}' headers: Content-Length: - - "1955" + - "1952" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:57 GMT + - Mon, 26 Jun 2023 13:34:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1102,7 +1102,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 758b2540-5070-4077-8207-6af2e1a32cc5 + - 923608ba-5683-46c0-bd4e-2b3fe3ce0996 status: 200 OK code: 200 duration: "" @@ -1115,7 +1115,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/7b8c0681-c6ed-417d-9255-424ef729849b/healthcheck + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f8942343-61d4-4828-9f8b-5451cd4147b4/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}' @@ -1127,7 +1127,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:57 GMT + - Mon, 26 Jun 2023 13:34:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1137,12 +1137,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5cced6b1-0606-4134-a8e6-a6bf18a9d9de + - 497f6b80-8bf3-4963-8483-75cc9a2ccf42 status: 200 OK code: 200 duration: "" - request: - body: '{"server_ip":["163.172.169.96","51.15.216.253"]}' + body: '{"server_ip":["163.172.142.161","163.172.182.127"]}' 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/7b8c0681-c6ed-417d-9255-424ef729849b/servers + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f8942343-61d4-4828-9f8b-5451cd4147b4/servers method: PUT response: - body: '{"created_at":"2023-06-16T09:27:53.893252Z","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":"7b8c0681-c6ed-417d-9255-424ef729849b","ignore_ssl_server_verify":true,"lb":{"backend_count":1,"created_at":"2023-06-16T09:27:23.308630Z","description":"","frontend_count":0,"id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","instances":[{"created_at":"2023-06-16T09:26:21.383340Z","id":"2cf30730-797f-4291-ab55-7290bfd70991","ip_address":"10.74.84.55","region":"fr-par","status":"pending","updated_at":"2023-06-16T09:27:57.992034621Z","zone":"fr-par-1"}],"ip":[{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-16T09:27:25.360933Z","zone":"fr-par-1"},"max_connections":null,"max_retries":null,"name":"bkd01","on_marked_down_action":"shutdown_sessions","pool":["163.172.169.96","51.15.216.253"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":true,"sticky_sessions":"cookie","sticky_sessions_cookie_name":"session-id","timeout_connect":2500,"timeout_queue":null,"timeout_server":1000,"timeout_tunnel":3000,"updated_at":"2023-06-16T09:27:57.963502044Z"}' + body: '{"created_at":"2023-06-26T13:34:53.601770Z","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":"f8942343-61d4-4828-9f8b-5451cd4147b4","ignore_ssl_server_verify":true,"lb":{"backend_count":1,"created_at":"2023-06-26T13:34:22.990286Z","description":"","frontend_count":0,"id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","instances":[{"created_at":"2023-06-26T13:06:34.618141Z","id":"2f1a9112-ac99-4450-af0a-767bab5e16a1","ip_address":"10.76.50.75","region":"fr-par","status":"pending","updated_at":"2023-06-26T13:34:57.396294465Z","zone":"fr-par-1"}],"ip":[{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-26T13:34:25.108043Z","zone":"fr-par-1"},"max_connections":42,"max_retries":null,"name":"bkd01","on_marked_down_action":"shutdown_sessions","pool":["163.172.142.161","163.172.182.127"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"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-26T13:34:57.374422509Z"}' headers: Content-Length: - - "1977" + - "1976" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:58 GMT + - Mon, 26 Jun 2023 13:34:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1172,7 +1172,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3a836e6-ed34-43d1-a9c9-21116b4fc29e + - b920b4a4-536a-46eb-897b-86ea9fcab187 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/ecdde303-29d5-4f1c-a2a9-94c44acd12ed + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/221827d8-7bfc-4e82-bf5b-0daa95cc4ba8 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-16T09:27:23.308630Z","description":"","frontend_count":0,"id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","instances":[{"created_at":"2023-06-16T09:26:21.383340Z","id":"2cf30730-797f-4291-ab55-7290bfd70991","ip_address":"10.74.84.55","region":"fr-par","status":"ready","updated_at":"2023-06-16T09:27:58.002873Z","zone":"fr-par-1"}],"ip":[{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-16T09:27:25.360933Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-06-26T13:34:22.990286Z","description":"","frontend_count":0,"id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","instances":[{"created_at":"2023-06-26T13:06:34.618141Z","id":"2f1a9112-ac99-4450-af0a-767bab5e16a1","ip_address":"10.76.50.75","region":"fr-par","status":"ready","updated_at":"2023-06-26T13:34:57.644766Z","zone":"fr-par-1"}],"ip":[{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-26T13:34:25.108043Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1091" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:58 GMT + - Mon, 26 Jun 2023 13:34:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1205,7 +1205,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c78685b-32ce-4da3-8d35-0e663bed9e88 + - 125c14bf-c036-43b7-9443-1acdb9655023 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/7b8c0681-c6ed-417d-9255-424ef729849b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f8942343-61d4-4828-9f8b-5451cd4147b4 method: GET response: - body: '{"created_at":"2023-06-16T09:27:53.893252Z","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":"7b8c0681-c6ed-417d-9255-424ef729849b","ignore_ssl_server_verify":true,"lb":{"backend_count":1,"created_at":"2023-06-16T09:27:23.308630Z","description":"","frontend_count":0,"id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","instances":[{"created_at":"2023-06-16T09:26:21.383340Z","id":"2cf30730-797f-4291-ab55-7290bfd70991","ip_address":"10.74.84.55","region":"fr-par","status":"ready","updated_at":"2023-06-16T09:27:58.002873Z","zone":"fr-par-1"}],"ip":[{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-16T09:27:25.360933Z","zone":"fr-par-1"},"max_connections":null,"max_retries":null,"name":"bkd01","on_marked_down_action":"shutdown_sessions","pool":["163.172.169.96","51.15.216.253"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":true,"sticky_sessions":"cookie","sticky_sessions_cookie_name":"session-id","timeout_connect":2500,"timeout_queue":null,"timeout_server":1000,"timeout_tunnel":3000,"updated_at":"2023-06-16T09:27:57.963502Z"}' + body: '{"created_at":"2023-06-26T13:34:53.601770Z","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":"f8942343-61d4-4828-9f8b-5451cd4147b4","ignore_ssl_server_verify":true,"lb":{"backend_count":1,"created_at":"2023-06-26T13:34:22.990286Z","description":"","frontend_count":0,"id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","instances":[{"created_at":"2023-06-26T13:06:34.618141Z","id":"2f1a9112-ac99-4450-af0a-767bab5e16a1","ip_address":"10.76.50.75","region":"fr-par","status":"ready","updated_at":"2023-06-26T13:34:57.644766Z","zone":"fr-par-1"}],"ip":[{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-26T13:34:25.108043Z","zone":"fr-par-1"},"max_connections":42,"max_retries":null,"name":"bkd01","on_marked_down_action":"shutdown_sessions","pool":["163.172.142.161","163.172.182.127"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"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-26T13:34:57.374423Z"}' headers: Content-Length: - - "1969" + - "1968" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:58 GMT + - Mon, 26 Jun 2023 13:34:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1238,7 +1238,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4555f062-d767-4fe2-992d-d8c85f871c7f + - 0b327ce1-749b-4417-807c-59b4562f6f3c 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/ecdde303-29d5-4f1c-a2a9-94c44acd12ed + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/221827d8-7bfc-4e82-bf5b-0daa95cc4ba8 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-16T09:27:23.308630Z","description":"","frontend_count":0,"id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","instances":[{"created_at":"2023-06-16T09:26:21.383340Z","id":"2cf30730-797f-4291-ab55-7290bfd70991","ip_address":"10.74.84.55","region":"fr-par","status":"ready","updated_at":"2023-06-16T09:27:58.219041Z","zone":"fr-par-1"}],"ip":[{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-16T09:27:25.360933Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-06-26T13:34:22.990286Z","description":"","frontend_count":0,"id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","instances":[{"created_at":"2023-06-26T13:06:34.618141Z","id":"2f1a9112-ac99-4450-af0a-767bab5e16a1","ip_address":"10.76.50.75","region":"fr-par","status":"ready","updated_at":"2023-06-26T13:34:57.644766Z","zone":"fr-par-1"}],"ip":[{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-26T13:34:25.108043Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1091" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:58 GMT + - Mon, 26 Jun 2023 13:34:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1271,7 +1271,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 317a479f-d029-47a2-970f-69ad249d8af9 + - 6a219d60-cad5-4c76-aea7-5f2a666b271e 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/7b8c0681-c6ed-417d-9255-424ef729849b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f8942343-61d4-4828-9f8b-5451cd4147b4 method: GET response: - body: '{"created_at":"2023-06-16T09:27:53.893252Z","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":"7b8c0681-c6ed-417d-9255-424ef729849b","ignore_ssl_server_verify":true,"lb":{"backend_count":1,"created_at":"2023-06-16T09:27:23.308630Z","description":"","frontend_count":0,"id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","instances":[{"created_at":"2023-06-16T09:26:21.383340Z","id":"2cf30730-797f-4291-ab55-7290bfd70991","ip_address":"10.74.84.55","region":"fr-par","status":"ready","updated_at":"2023-06-16T09:27:58.219041Z","zone":"fr-par-1"}],"ip":[{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-16T09:27:25.360933Z","zone":"fr-par-1"},"max_connections":null,"max_retries":null,"name":"bkd01","on_marked_down_action":"shutdown_sessions","pool":["163.172.169.96","51.15.216.253"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":true,"sticky_sessions":"cookie","sticky_sessions_cookie_name":"session-id","timeout_connect":2500,"timeout_queue":null,"timeout_server":1000,"timeout_tunnel":3000,"updated_at":"2023-06-16T09:27:57.963502Z"}' + body: '{"created_at":"2023-06-26T13:34:53.601770Z","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":"f8942343-61d4-4828-9f8b-5451cd4147b4","ignore_ssl_server_verify":true,"lb":{"backend_count":1,"created_at":"2023-06-26T13:34:22.990286Z","description":"","frontend_count":0,"id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","instances":[{"created_at":"2023-06-26T13:06:34.618141Z","id":"2f1a9112-ac99-4450-af0a-767bab5e16a1","ip_address":"10.76.50.75","region":"fr-par","status":"ready","updated_at":"2023-06-26T13:34:57.644766Z","zone":"fr-par-1"}],"ip":[{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-26T13:34:25.108043Z","zone":"fr-par-1"},"max_connections":42,"max_retries":null,"name":"bkd01","on_marked_down_action":"shutdown_sessions","pool":["163.172.142.161","163.172.182.127"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"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-26T13:34:57.374423Z"}' headers: Content-Length: - - "1969" + - "1968" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:58 GMT + - Mon, 26 Jun 2023 13:34:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1304,7 +1304,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f3d4d3f-56e5-4cb1-862b-e42788c62c2c + - 5b5827b1-6948-42c1-b1af-d5db903f81a0 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/instance/v1/zones/fr-par-1/ips/d7255298-a020-4be0-815c-c5d379d587b9 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c method: GET response: - body: '{"ip":{"address":"51.15.216.253","id":"d7255298-a020-4be0-815c-c5d379d587b9","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null,"server":null,"tags":[],"zone":"fr-par-1"}}' + body: '{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "254" + - "319" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:58 GMT + - Mon, 26 Jun 2023 13:34:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1337,7 +1337,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2a8fd80-3e84-4985-b7a6-d0683c374092 + - 32cbbcf8-9df3-4f5b-b301-6edc58c10fc8 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/lb/v1/zones/fr-par-1/ips/d579d6e6-b00e-400b-b8dd-45410adbfb32 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/51737998-4ae9-4dbf-ad08-6ac211bf4990 method: GET response: - body: '{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"ip":{"address":"163.172.182.127","id":"51737998-4ae9-4dbf-ad08-6ac211bf4990","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null,"server":null,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "321" + - "256" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:58 GMT + - Mon, 26 Jun 2023 13:34:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1370,7 +1370,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2181a7c-f051-4888-8f87-421b4b589f63 + - bc3fc94c-0189-4d86-96d6-d399bb2ac766 status: 200 OK code: 200 duration: "" @@ -1381,19 +1381,19 @@ interactions: User-Agent: - scaleway-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/237eb35e-a07e-448c-8948-a54824077849 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5cc5a471-b5b6-4161-8dd1-ef822401cc26 method: GET response: - body: '{"ip":{"address":"163.172.169.96","id":"237eb35e-a07e-448c-8948-a54824077849","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null,"server":null,"tags":[],"zone":"fr-par-1"}}' + body: '{"ip":{"address":"163.172.142.161","id":"5cc5a471-b5b6-4161-8dd1-ef822401cc26","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null,"server":null,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "255" + - "256" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:58 GMT + - Mon, 26 Jun 2023 13:34:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1403,7 +1403,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e4c079f-c0aa-4358-b65c-fa291f5a484a + - a67dd57b-3f09-4966-8b58-07b2eaf97fcc 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/ecdde303-29d5-4f1c-a2a9-94c44acd12ed + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/221827d8-7bfc-4e82-bf5b-0daa95cc4ba8 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-16T09:27:23.308630Z","description":"","frontend_count":0,"id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","instances":[{"created_at":"2023-06-16T09:26:21.383340Z","id":"2cf30730-797f-4291-ab55-7290bfd70991","ip_address":"10.74.84.55","region":"fr-par","status":"ready","updated_at":"2023-06-16T09:27:58.219041Z","zone":"fr-par-1"}],"ip":[{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-16T09:27:25.360933Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-06-26T13:34:22.990286Z","description":"","frontend_count":0,"id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","instances":[{"created_at":"2023-06-26T13:06:34.618141Z","id":"2f1a9112-ac99-4450-af0a-767bab5e16a1","ip_address":"10.76.50.75","region":"fr-par","status":"ready","updated_at":"2023-06-26T13:34:57.644766Z","zone":"fr-par-1"}],"ip":[{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-26T13:34:25.108043Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1091" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:58 GMT + - Mon, 26 Jun 2023 13:34:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1436,7 +1436,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea236f4c-6580-481b-8cb8-f678ad697c01 + - 1c72886b-6510-4ab5-90f6-5f4766a67b88 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/ecdde303-29d5-4f1c-a2a9-94c44acd12ed + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/221827d8-7bfc-4e82-bf5b-0daa95cc4ba8 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-16T09:27:23.308630Z","description":"","frontend_count":0,"id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","instances":[{"created_at":"2023-06-16T09:26:21.383340Z","id":"2cf30730-797f-4291-ab55-7290bfd70991","ip_address":"10.74.84.55","region":"fr-par","status":"ready","updated_at":"2023-06-16T09:27:58.219041Z","zone":"fr-par-1"}],"ip":[{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-16T09:27:25.360933Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-06-26T13:34:22.990286Z","description":"","frontend_count":0,"id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","instances":[{"created_at":"2023-06-26T13:06:34.618141Z","id":"2f1a9112-ac99-4450-af0a-767bab5e16a1","ip_address":"10.76.50.75","region":"fr-par","status":"ready","updated_at":"2023-06-26T13:34:57.644766Z","zone":"fr-par-1"}],"ip":[{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-26T13:34:25.108043Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1091" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:59 GMT + - Mon, 26 Jun 2023 13:34:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1469,7 +1469,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62c6e7ca-0dab-4ada-af81-b737219f6c42 + - 96674c6d-17f9-4825-baad-957773480deb status: 200 OK code: 200 duration: "" @@ -1480,7 +1480,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/ecdde303-29d5-4f1c-a2a9-94c44acd12ed/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/221827d8-7bfc-4e82-bf5b-0daa95cc4ba8/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' @@ -1492,7 +1492,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:59 GMT + - Mon, 26 Jun 2023 13:34:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1502,7 +1502,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2bd614c-bd85-4f22-b174-85dcabf2a3a0 + - 4287b322-686d-4b4a-91ce-a23286ef8532 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/7b8c0681-c6ed-417d-9255-424ef729849b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f8942343-61d4-4828-9f8b-5451cd4147b4 method: GET response: - body: '{"created_at":"2023-06-16T09:27:53.893252Z","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":"7b8c0681-c6ed-417d-9255-424ef729849b","ignore_ssl_server_verify":true,"lb":{"backend_count":1,"created_at":"2023-06-16T09:27:23.308630Z","description":"","frontend_count":0,"id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","instances":[{"created_at":"2023-06-16T09:26:21.383340Z","id":"2cf30730-797f-4291-ab55-7290bfd70991","ip_address":"10.74.84.55","region":"fr-par","status":"ready","updated_at":"2023-06-16T09:27:58.219041Z","zone":"fr-par-1"}],"ip":[{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-16T09:27:25.360933Z","zone":"fr-par-1"},"max_connections":null,"max_retries":null,"name":"bkd01","on_marked_down_action":"shutdown_sessions","pool":["163.172.169.96","51.15.216.253"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":true,"sticky_sessions":"cookie","sticky_sessions_cookie_name":"session-id","timeout_connect":2500,"timeout_queue":null,"timeout_server":1000,"timeout_tunnel":3000,"updated_at":"2023-06-16T09:27:57.963502Z"}' + body: '{"created_at":"2023-06-26T13:34:53.601770Z","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":"f8942343-61d4-4828-9f8b-5451cd4147b4","ignore_ssl_server_verify":true,"lb":{"backend_count":1,"created_at":"2023-06-26T13:34:22.990286Z","description":"","frontend_count":0,"id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","instances":[{"created_at":"2023-06-26T13:06:34.618141Z","id":"2f1a9112-ac99-4450-af0a-767bab5e16a1","ip_address":"10.76.50.75","region":"fr-par","status":"ready","updated_at":"2023-06-26T13:34:57.644766Z","zone":"fr-par-1"}],"ip":[{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-26T13:34:25.108043Z","zone":"fr-par-1"},"max_connections":42,"max_retries":null,"name":"bkd01","on_marked_down_action":"shutdown_sessions","pool":["163.172.142.161","163.172.182.127"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"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-26T13:34:57.374423Z"}' headers: Content-Length: - - "1969" + - "1968" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:59 GMT + - Mon, 26 Jun 2023 13:34:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1535,7 +1535,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 852b3507-cbde-46e4-a660-098ff0e12616 + - 3f8fa290-c018-40ed-b409-1ee17625170f 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/ecdde303-29d5-4f1c-a2a9-94c44acd12ed + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/221827d8-7bfc-4e82-bf5b-0daa95cc4ba8 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-16T09:27:23.308630Z","description":"","frontend_count":0,"id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","instances":[{"created_at":"2023-06-16T09:26:21.383340Z","id":"2cf30730-797f-4291-ab55-7290bfd70991","ip_address":"10.74.84.55","region":"fr-par","status":"ready","updated_at":"2023-06-16T09:27:58.219041Z","zone":"fr-par-1"}],"ip":[{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-16T09:27:25.360933Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-06-26T13:34:22.990286Z","description":"","frontend_count":0,"id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","instances":[{"created_at":"2023-06-26T13:06:34.618141Z","id":"2f1a9112-ac99-4450-af0a-767bab5e16a1","ip_address":"10.76.50.75","region":"fr-par","status":"ready","updated_at":"2023-06-26T13:34:57.644766Z","zone":"fr-par-1"}],"ip":[{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-26T13:34:25.108043Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1091" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:59 GMT + - Mon, 26 Jun 2023 13:34:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1568,7 +1568,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf19d945-0873-43c4-83d4-22d03667a4bf + - dfeda127-152f-4887-8218-15551ec4772e 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/ecdde303-29d5-4f1c-a2a9-94c44acd12ed + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/221827d8-7bfc-4e82-bf5b-0daa95cc4ba8 method: GET response: - body: '{"backend_count":1,"created_at":"2023-06-16T09:27:23.308630Z","description":"","frontend_count":0,"id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","instances":[{"created_at":"2023-06-16T09:26:21.383340Z","id":"2cf30730-797f-4291-ab55-7290bfd70991","ip_address":"10.74.84.55","region":"fr-par","status":"ready","updated_at":"2023-06-16T09:27:58.219041Z","zone":"fr-par-1"}],"ip":[{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-16T09:27:25.360933Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2023-06-26T13:34:22.990286Z","description":"","frontend_count":0,"id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","instances":[{"created_at":"2023-06-26T13:06:34.618141Z","id":"2f1a9112-ac99-4450-af0a-767bab5e16a1","ip_address":"10.76.50.75","region":"fr-par","status":"ready","updated_at":"2023-06-26T13:34:57.644766Z","zone":"fr-par-1"}],"ip":[{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-26T13:34:25.108043Z","zone":"fr-par-1"}' headers: Content-Length: - - "1093" + - "1091" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:27:59 GMT + - Mon, 26 Jun 2023 13:34:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1601,7 +1601,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5543e66-3383-46a3-a51e-4afff955c865 + - aacb79ee-9afe-4269-a13f-ed956e26770e 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/7b8c0681-c6ed-417d-9255-424ef729849b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f8942343-61d4-4828-9f8b-5451cd4147b4 method: DELETE response: body: "" @@ -1622,7 +1622,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:28:00 GMT + - Mon, 26 Jun 2023 13:34:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1632,7 +1632,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0a5724c-4251-40c7-b921-61cebbff1e62 + - 519ef156-fc1e-4b32-aa97-1eae592caa5d 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/ecdde303-29d5-4f1c-a2a9-94c44acd12ed + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/221827d8-7bfc-4e82-bf5b-0daa95cc4ba8 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-16T09:27:23.308630Z","description":"","frontend_count":0,"id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","instances":[{"created_at":"2023-06-16T09:26:21.383340Z","id":"2cf30730-797f-4291-ab55-7290bfd70991","ip_address":"10.74.84.55","region":"fr-par","status":"pending","updated_at":"2023-06-16T09:28:00.058249Z","zone":"fr-par-1"}],"ip":[{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-16T09:27:25.360933Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-06-26T13:34:22.990286Z","description":"","frontend_count":0,"id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","instances":[{"created_at":"2023-06-26T13:06:34.618141Z","id":"2f1a9112-ac99-4450-af0a-767bab5e16a1","ip_address":"10.76.50.75","region":"fr-par","status":"pending","updated_at":"2023-06-26T13:34:59.411964Z","zone":"fr-par-1"}],"ip":[{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-26T13:34:25.108043Z","zone":"fr-par-1"}' headers: Content-Length: - - "1095" + - "1093" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:28:00 GMT + - Mon, 26 Jun 2023 13:34:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1665,7 +1665,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - efbf16e2-d672-49ce-9c1f-2d3a70f51404 + - 7129cd03-d96b-4304-8d38-c80204d8b197 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/ecdde303-29d5-4f1c-a2a9-94c44acd12ed + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/221827d8-7bfc-4e82-bf5b-0daa95cc4ba8 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-16T09:27:23.308630Z","description":"","frontend_count":0,"id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","instances":[{"created_at":"2023-06-16T09:26:21.383340Z","id":"2cf30730-797f-4291-ab55-7290bfd70991","ip_address":"10.74.84.55","region":"fr-par","status":"pending","updated_at":"2023-06-16T09:28:00.058249Z","zone":"fr-par-1"}],"ip":[{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-16T09:27:25.360933Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-06-26T13:34:22.990286Z","description":"","frontend_count":0,"id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","instances":[{"created_at":"2023-06-26T13:06:34.618141Z","id":"2f1a9112-ac99-4450-af0a-767bab5e16a1","ip_address":"10.76.50.75","region":"fr-par","status":"ready","updated_at":"2023-06-26T13:34:59.660200Z","zone":"fr-par-1"}],"ip":[{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-06-26T13:34:25.108043Z","zone":"fr-par-1"}' headers: Content-Length: - - "1095" + - "1091" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:28:00 GMT + - Mon, 26 Jun 2023 13:34:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1698,7 +1698,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da02d93a-e461-41a9-bbfe-1083a5d6feb9 + - 7538f2ab-372a-4369-9087-543231406839 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/237eb35e-a07e-448c-8948-a54824077849 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5cc5a471-b5b6-4161-8dd1-ef822401cc26 method: DELETE response: body: "" @@ -1717,7 +1717,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Fri, 16 Jun 2023 09:28:00 GMT + - Mon, 26 Jun 2023 13:34:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1727,7 +1727,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78a842d7-a209-4353-81ac-a117ac18d8a1 + - b7c77c71-080c-4dc5-a59d-6a25e1ead81f 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/d7255298-a020-4be0-815c-c5d379d587b9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/51737998-4ae9-4dbf-ad08-6ac211bf4990 method: DELETE response: body: "" @@ -1746,7 +1746,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Fri, 16 Jun 2023 09:28:00 GMT + - Mon, 26 Jun 2023 13:34:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1756,7 +1756,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78dcfbb0-8a69-4301-8264-287a1ac9d8c0 + - 6dffec1d-e2bd-40b8-8834-6afbc8e22f7c 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/ecdde303-29d5-4f1c-a2a9-94c44acd12ed?release_ip=false + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/221827d8-7bfc-4e82-bf5b-0daa95cc4ba8?release_ip=false method: DELETE response: body: "" @@ -1777,7 +1777,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:28:00 GMT + - Mon, 26 Jun 2023 13:35:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1787,7 +1787,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f7be9b61-0c0b-4c4a-854f-de3fb4b3ccba + - 2842cc17-b933-4f8f-8d62-1e3681ca3e55 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/ecdde303-29d5-4f1c-a2a9-94c44acd12ed + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/221827d8-7bfc-4e82-bf5b-0daa95cc4ba8 method: GET response: - body: '{"backend_count":0,"created_at":"2023-06-16T09:27:23.308630Z","description":"","frontend_count":0,"id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","instances":[{"created_at":"2023-06-16T09:26:21.383340Z","id":"2cf30730-797f-4291-ab55-7290bfd70991","ip_address":"10.74.84.55","region":"fr-par","status":"ready","updated_at":"2023-06-16T09:28:00.333919Z","zone":"fr-par-1"}],"ip":[{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":"ecdde303-29d5-4f1c-a2a9-94c44acd12ed","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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-16T09:28:00.432503Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-06-26T13:34:22.990286Z","description":"","frontend_count":0,"id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","instances":[{"created_at":"2023-06-26T13:06:34.618141Z","id":"2f1a9112-ac99-4450-af0a-767bab5e16a1","ip_address":"10.76.50.75","region":"fr-par","status":"ready","updated_at":"2023-06-26T13:34:59.660200Z","zone":"fr-par-1"}],"ip":[{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":"221827d8-7bfc-4e82-bf5b-0daa95cc4ba8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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-26T13:34:59.857255Z","zone":"fr-par-1"}' headers: Content-Length: - - "1097" + - "1095" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:28:00 GMT + - Mon, 26 Jun 2023 13:35:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1820,7 +1820,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d71f9ce0-f31d-4530-8204-b915e83e0508 + - 390b91c5-6e2d-4758-a877-7ac5834f11bd 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/ecdde303-29d5-4f1c-a2a9-94c44acd12ed + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/221827d8-7bfc-4e82-bf5b-0daa95cc4ba8 method: GET response: body: '{"message":"lbs not Found"}' @@ -1843,7 +1843,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:28:30 GMT + - Mon, 26 Jun 2023 13:35:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1853,7 +1853,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67916c94-053d-46f7-a945-0d52358a0784 + - 2dc7ffbf-530f-4fdf-8fd5-4665a7f502ea 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/ecdde303-29d5-4f1c-a2a9-94c44acd12ed + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/221827d8-7bfc-4e82-bf5b-0daa95cc4ba8 method: GET response: body: '{"message":"lbs not Found"}' @@ -1876,7 +1876,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:28:30 GMT + - Mon, 26 Jun 2023 13:35:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1886,7 +1886,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ce6dac1-009c-4c9d-89d3-0479d1460f5b + - a71f2a5d-10f9-4e1e-ae39-804602809acc 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/d579d6e6-b00e-400b-b8dd-45410adbfb32 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c method: GET response: - body: '{"id":"d579d6e6-b00e-400b-b8dd-45410adbfb32","ip_address":"51.159.204.159","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-204-159.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c","ip_address":"51.159.205.91","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-91.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "287" + - "285" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:28:30 GMT + - Mon, 26 Jun 2023 13:35:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1919,7 +1919,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d325b28a-02ed-4664-a52e-4beae02f1ad3 + - a9d625f9-0ca7-43a9-92a7-67a3eb7d25b0 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/d579d6e6-b00e-400b-b8dd-45410adbfb32 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0bda63ae-0c2f-4cbf-803a-3fa6fd381b5c method: DELETE response: body: "" @@ -1940,7 +1940,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:28:31 GMT + - Mon, 26 Jun 2023 13:35:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1950,7 +1950,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad7f4f1a-070f-4fae-91b4-54dde0669a88 + - b4551920-e68b-4d4f-a76e-8a9b56bf1482 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/7b8c0681-c6ed-417d-9255-424ef729849b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f8942343-61d4-4828-9f8b-5451cd4147b4 method: GET response: body: '{"message":"backend not Found"}' @@ -1973,7 +1973,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 Jun 2023 09:28:31 GMT + - Mon, 26 Jun 2023 13:35:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1983,7 +1983,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77695bdf-417b-4cb3-a22b-aa310e68cc84 + - a1bf503e-9ace-4adc-93d5-9466793b820c status: 404 Not Found code: 404 duration: ""