diff --git a/docs/data-sources/lbs.md b/docs/data-sources/lbs.md index 88b5d3dd7..ea08de97e 100644 --- a/docs/data-sources/lbs.md +++ b/docs/data-sources/lbs.md @@ -20,12 +20,19 @@ data "scaleway_lbs" "my_key" { name = "foobar" zone = "fr-par-2" } + +# Find LBs that share the same tags +data "scaleway_lbs" "lbs_by_tags" { + tags = [ "a tag" ] +} ``` ## Argument Reference - `name` - (Optional) The load balancer name used as a filter. LBs with a name like it are listed. +- `tags` - (Optional) List of tags used as filter. LBs with these exact tags are listed. + - `zone` - (Defaults to [provider](../index.md#zone) `zone`) The [zone](../guides/regions_and_zones.md#zones) in which LBs exist. ## Attributes Reference diff --git a/scaleway/data_source_lbs.go b/scaleway/data_source_lbs.go index efe0ccb49..091c09a45 100644 --- a/scaleway/data_source_lbs.go +++ b/scaleway/data_source_lbs.go @@ -20,6 +20,14 @@ func DataSourceScalewayLbs() *schema.Resource { Optional: true, Description: "LBs with a name like it are listed.", }, + "tags": { + Type: schema.TypeList, + Elem: &schema.Schema{ + Type: schema.TypeString, + }, + Optional: true, + Description: "LBs with these exact tags are listed", + }, "lbs": { Type: schema.TypeList, Computed: true, @@ -162,6 +170,7 @@ func dataSourceScalewayLbsRead(ctx context.Context, d *schema.ResourceData, m in Zone: zone, Name: types.ExpandStringPtr(d.Get("name")), ProjectID: types.ExpandStringPtr(d.Get("project_id")), + Tags: types.ExpandStrings(d.Get("tags")), }, scw.WithContext(ctx)) if err != nil { return diag.FromErr(err) diff --git a/scaleway/data_source_lbs_test.go b/scaleway/data_source_lbs_test.go index 47acb2f39..8fd554e23 100644 --- a/scaleway/data_source_lbs_test.go +++ b/scaleway/data_source_lbs_test.go @@ -36,6 +36,7 @@ func TestAccScalewayDataSourceLbs_Basic(t *testing.T) { name = "tf-lb-datasource0" description = "a description" type = "LB-S" + tags = [ "terraform-test", "data_scaleway_lbs", "basic" ] } `, }, @@ -52,6 +53,7 @@ func TestAccScalewayDataSourceLbs_Basic(t *testing.T) { name = "tf-lb-datasource0" description = "a description" type = "LB-S" + tags = [ "terraform-test", "data_scaleway_lbs", "basic" ] } resource scaleway_lb lb2 { @@ -59,6 +61,7 @@ func TestAccScalewayDataSourceLbs_Basic(t *testing.T) { name = "tf-lb-datasource1" description = "a description" type = "LB-S" + tags = [ "terraform-test", "data_scaleway_lbs", "basic" ] } `, }, @@ -75,6 +78,7 @@ func TestAccScalewayDataSourceLbs_Basic(t *testing.T) { name = "tf-lb-datasource0" description = "a description" type = "LB-S" + tags = [ "terraform-test", "data_scaleway_lbs", "basic" ] } resource scaleway_lb lb2 { @@ -82,6 +86,7 @@ func TestAccScalewayDataSourceLbs_Basic(t *testing.T) { name = "tf-lb-datasource1" description = "a description" type = "LB-S" + tags = [ "terraform-test", "data_scaleway_lbs", "basic" ] } data "scaleway_lbs" "lbs_by_name" { @@ -89,6 +94,11 @@ func TestAccScalewayDataSourceLbs_Basic(t *testing.T) { depends_on = [scaleway_lb.lb1, scaleway_lb.lb2] } + data "scaleway_lbs" "lbs_by_tags" { + tags = [ "terraform-test", "data_scaleway_lbs" ] + depends_on = [scaleway_lb.lb1, scaleway_lb.lb2] + } + data "scaleway_lbs" "lbs_by_name_other_zone" { name = "tf-lb-datasource" zone = "fr-par-2" @@ -101,6 +111,9 @@ func TestAccScalewayDataSourceLbs_Basic(t *testing.T) { resource.TestCheckResourceAttrSet("data.scaleway_lbs.lbs_by_name", "lbs.0.name"), resource.TestCheckResourceAttrSet("data.scaleway_lbs.lbs_by_name", "lbs.1.name"), + resource.TestCheckResourceAttrSet("data.scaleway_lbs.lbs_by_tags", "lbs.0.id"), + resource.TestCheckResourceAttrSet("data.scaleway_lbs.lbs_by_tags", "lbs.1.id"), + resource.TestCheckNoResourceAttr("data.scaleway_lbs.lbs_by_name_other_zone", "lbs.0.id"), ), }, diff --git a/scaleway/testdata/data-source-lbs-basic.cassette.yaml b/scaleway/testdata/data-source-lbs-basic.cassette.yaml index f9e8b7808..ca1ba4608 100644 --- a/scaleway/testdata/data-source-lbs-basic.cassette.yaml +++ b/scaleway/testdata/data-source-lbs-basic.cassette.yaml @@ -2,29 +2,29 @@ version: 1 interactions: - request: - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","is_ipv6":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips method: POST response: - body: '{"id":"cadc082d-dfcd-4d33-84ac-1bb92807d7b5","ip_address":"51.159.205.18","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-18.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"c0593960-c703-4d1a-9599-22e0095c9d8f","ip_address":"195.154.73.129","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-73-129.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "285" + - "287" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:00:44 GMT + - Mon, 25 Mar 2024 16:48:56 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -32,7 +32,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1785e65d-e9f6-4dd8-93cf-1123d8f1a2e8 + - 3921802c-a70d-4985-b7f9-39bfbe5cd46a status: 200 OK code: 200 duration: "" @@ -41,23 +41,23 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cadc082d-dfcd-4d33-84ac-1bb92807d7b5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c0593960-c703-4d1a-9599-22e0095c9d8f method: GET response: - body: '{"id":"cadc082d-dfcd-4d33-84ac-1bb92807d7b5","ip_address":"51.159.205.18","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-18.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"c0593960-c703-4d1a-9599-22e0095c9d8f","ip_address":"195.154.73.129","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-73-129.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "285" + - "287" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:00:44 GMT + - Mon, 25 Mar 2024 16:48:56 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -65,7 +65,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98b6f3c8-cb69-4e72-8373-5a95a6918047 + - c5ac369e-a7e7-430d-bf51-bea9312580be status: 200 OK code: 200 duration: "" @@ -74,23 +74,23 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cadc082d-dfcd-4d33-84ac-1bb92807d7b5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c0593960-c703-4d1a-9599-22e0095c9d8f method: GET response: - body: '{"id":"cadc082d-dfcd-4d33-84ac-1bb92807d7b5","ip_address":"51.159.205.18","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-18.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"c0593960-c703-4d1a-9599-22e0095c9d8f","ip_address":"195.154.73.129","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-73-129.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "285" + - "287" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:00:44 GMT + - Mon, 25 Mar 2024 16:48:56 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -98,7 +98,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f98c87c6-cb61-406f-bc2d-b02cec71a195 + - 60b74b73-c787-4ade-a474-ae006e444f21 status: 200 OK code: 200 duration: "" @@ -107,23 +107,23 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cadc082d-dfcd-4d33-84ac-1bb92807d7b5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c0593960-c703-4d1a-9599-22e0095c9d8f method: GET response: - body: '{"id":"cadc082d-dfcd-4d33-84ac-1bb92807d7b5","ip_address":"51.159.205.18","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-18.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"c0593960-c703-4d1a-9599-22e0095c9d8f","ip_address":"195.154.73.129","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-73-129.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "285" + - "287" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:00:45 GMT + - Mon, 25 Mar 2024 16:48:57 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -131,23 +131,23 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64d2168b-3baf-46cd-84b8-ff63536f436e + - d945eb79-30e5-44a7-bc47-21abe8e46de1 status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","is_ipv6":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips method: POST response: - body: '{"id":"cb1ee2e1-ce03-4dcf-a5fc-6270324320cf","ip_address":"51.159.26.98","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-98.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"c5657896-d40d-407b-872b-29d43fff1ae3","ip_address":"195.154.72.7","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-72-7.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - "283" @@ -156,9 +156,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:00:45 GMT + - Mon, 25 Mar 2024 16:48:57 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -166,7 +166,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a26b81ae-aa92-468b-940e-364e40ad4712 + - cd0d1740-0cac-4223-b52a-6419ef8b4685 status: 200 OK code: 200 duration: "" @@ -175,12 +175,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cb1ee2e1-ce03-4dcf-a5fc-6270324320cf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c5657896-d40d-407b-872b-29d43fff1ae3 method: GET response: - body: '{"id":"cb1ee2e1-ce03-4dcf-a5fc-6270324320cf","ip_address":"51.159.26.98","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-98.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"c5657896-d40d-407b-872b-29d43fff1ae3","ip_address":"195.154.72.7","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-72-7.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - "283" @@ -189,9 +189,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:00:45 GMT + - Mon, 25 Mar 2024 16:48:57 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -199,36 +199,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 267e22c7-06c5-4ad5-af67-d5d194bcd49e + - 0364c1a9-d444-428d-8248-b347fcf86b26 status: 200 OK code: 200 duration: "" - request: body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"tf-lb-datasource0","description":"a - description","ip_id":"cadc082d-dfcd-4d33-84ac-1bb92807d7b5","tags":null,"type":"LB-S","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' + description","ip_id":"c0593960-c703-4d1a-9599-22e0095c9d8f","ip_ids":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"LB-S","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs method: POST response: - body: '{"backend_count":0,"created_at":"2023-03-02T11:00:45.669727328Z","description":"a - description","frontend_count":0,"id":"36c702ad-45ee-4583-9160-17097b90b232","instances":[],"ip":[{"id":"cadc082d-dfcd-4d33-84ac-1bb92807d7b5","ip_address":"51.159.205.18","lb_id":"36c702ad-45ee-4583-9160-17097b90b232","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-18.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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-03-02T11:00:45.669727328Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2024-03-25T16:48:57.613874577Z","description":"a + description","frontend_count":0,"id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","instances":[],"ip":[{"id":"c0593960-c703-4d1a-9599-22e0095c9d8f","ip_address":"195.154.73.129","lb_id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-73-129.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:48:57.613874577Z","zone":"fr-par-1"}' headers: Content-Length: - - "907" + - "955" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:00:45 GMT + - Mon, 25 Mar 2024 16:48:57 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -236,7 +236,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ed113fb-737d-432b-b071-7aa20fb68116 + - ad4694b3-6ea0-4081-8987-f7481db9e4ef status: 200 OK code: 200 duration: "" @@ -245,24 +245,24 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/36c702ad-45ee-4583-9160-17097b90b232 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f method: GET response: - body: '{"backend_count":0,"created_at":"2023-03-02T11:00:45.669727Z","description":"a - description","frontend_count":0,"id":"36c702ad-45ee-4583-9160-17097b90b232","instances":[],"ip":[{"id":"cadc082d-dfcd-4d33-84ac-1bb92807d7b5","ip_address":"51.159.205.18","lb_id":"36c702ad-45ee-4583-9160-17097b90b232","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-18.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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-03-02T11:00:45.669727Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2024-03-25T16:48:57.613875Z","description":"a + description","frontend_count":0,"id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","instances":[],"ip":[{"id":"c0593960-c703-4d1a-9599-22e0095c9d8f","ip_address":"195.154.73.129","lb_id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-73-129.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:48:57.613875Z","zone":"fr-par-1"}' headers: Content-Length: - - "901" + - "949" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:00:45 GMT + - Mon, 25 Mar 2024 16:48:57 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -270,7 +270,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 278650b3-2a8d-42f7-8c95-5f697483f7c4 + - 5d1467ab-c6a6-452c-916a-a323c6bcd2f3 status: 200 OK code: 200 duration: "" @@ -279,24 +279,24 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/36c702ad-45ee-4583-9160-17097b90b232 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f method: GET response: - body: '{"backend_count":0,"created_at":"2023-03-02T11:00:45.669727Z","description":"a - description","frontend_count":0,"id":"36c702ad-45ee-4583-9160-17097b90b232","instances":[{"created_at":"2023-03-02T10:47:36.985415Z","id":"d98447cf-067d-4305-85d7-6e2b37008af6","ip_address":"10.65.68.57","region":"fr-par","status":"ready","updated_at":"2023-03-02T11:00:46.243611Z","zone":"fr-par-1"}],"ip":[{"id":"cadc082d-dfcd-4d33-84ac-1bb92807d7b5","ip_address":"51.159.205.18","lb_id":"36c702ad-45ee-4583-9160-17097b90b232","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-18.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-03-02T11:00:47.458540Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2024-03-25T16:48:57.613875Z","description":"a + description","frontend_count":0,"id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","instances":[{"created_at":"2024-03-25T16:42:56.944256Z","id":"32a7bfc4-e7c1-4517-99f7-4abc715e6de4","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:02.704171Z","zone":"fr-par-1"}],"ip":[{"id":"c0593960-c703-4d1a-9599-22e0095c9d8f","ip_address":"195.154.73.129","lb_id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-73-129.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:03.900943Z","zone":"fr-par-1"}' headers: Content-Length: - - "1114" + - "1151" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:16 GMT + - Mon, 25 Mar 2024 16:49:27 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -304,7 +304,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c07f6925-832e-4b00-b98f-6630a4ff8249 + - 7e379335-3521-49b5-9164-1575f7d73e60 status: 200 OK code: 200 duration: "" @@ -313,24 +313,24 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/36c702ad-45ee-4583-9160-17097b90b232 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f method: GET response: - body: '{"backend_count":0,"created_at":"2023-03-02T11:00:45.669727Z","description":"a - description","frontend_count":0,"id":"36c702ad-45ee-4583-9160-17097b90b232","instances":[{"created_at":"2023-03-02T10:47:36.985415Z","id":"d98447cf-067d-4305-85d7-6e2b37008af6","ip_address":"10.65.68.57","region":"fr-par","status":"ready","updated_at":"2023-03-02T11:00:46.243611Z","zone":"fr-par-1"}],"ip":[{"id":"cadc082d-dfcd-4d33-84ac-1bb92807d7b5","ip_address":"51.159.205.18","lb_id":"36c702ad-45ee-4583-9160-17097b90b232","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-18.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-03-02T11:00:47.458540Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2024-03-25T16:48:57.613875Z","description":"a + description","frontend_count":0,"id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","instances":[{"created_at":"2024-03-25T16:42:56.944256Z","id":"32a7bfc4-e7c1-4517-99f7-4abc715e6de4","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:02.704171Z","zone":"fr-par-1"}],"ip":[{"id":"c0593960-c703-4d1a-9599-22e0095c9d8f","ip_address":"195.154.73.129","lb_id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-73-129.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:03.900943Z","zone":"fr-par-1"}' headers: Content-Length: - - "1114" + - "1151" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:16 GMT + - Mon, 25 Mar 2024 16:49:28 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -338,7 +338,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35332491-7964-4cb7-9198-91f2957d7805 + - 12e8fd7f-59d8-4740-9fa0-aa708e910917 status: 200 OK code: 200 duration: "" @@ -347,9 +347,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/36c702ad-45ee-4583-9160-17097b90b232/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' @@ -361,9 +361,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:16 GMT + - Mon, 25 Mar 2024 16:49:28 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -371,7 +371,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 562844af-c534-4b08-9416-8f8efb494439 + - 4c89a331-fae0-46a9-8eae-6da065abf6ad status: 200 OK code: 200 duration: "" @@ -380,23 +380,23 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cb1ee2e1-ce03-4dcf-a5fc-6270324320cf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c0593960-c703-4d1a-9599-22e0095c9d8f method: GET response: - body: '{"id":"cb1ee2e1-ce03-4dcf-a5fc-6270324320cf","ip_address":"51.159.26.98","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-98.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"c0593960-c703-4d1a-9599-22e0095c9d8f","ip_address":"195.154.73.129","lb_id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-73-129.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "283" + - "321" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:16 GMT + - Mon, 25 Mar 2024 16:49:28 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -404,7 +404,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98167284-c033-4c88-adc3-2a5931401bf2 + - 0319022d-783d-45c7-8c74-eb34eb01bdbc status: 200 OK code: 200 duration: "" @@ -413,23 +413,23 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cadc082d-dfcd-4d33-84ac-1bb92807d7b5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c5657896-d40d-407b-872b-29d43fff1ae3 method: GET response: - body: '{"id":"cadc082d-dfcd-4d33-84ac-1bb92807d7b5","ip_address":"51.159.205.18","lb_id":"36c702ad-45ee-4583-9160-17097b90b232","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-18.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"c5657896-d40d-407b-872b-29d43fff1ae3","ip_address":"195.154.72.7","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-72-7.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "319" + - "283" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:16 GMT + - Mon, 25 Mar 2024 16:49:28 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -437,7 +437,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5bed6a18-0428-44ab-94aa-39a7fd887b70 + - 34df18ab-2eed-4a59-84c9-0228d94535cc status: 200 OK code: 200 duration: "" @@ -446,24 +446,24 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/36c702ad-45ee-4583-9160-17097b90b232 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f method: GET response: - body: '{"backend_count":0,"created_at":"2023-03-02T11:00:45.669727Z","description":"a - description","frontend_count":0,"id":"36c702ad-45ee-4583-9160-17097b90b232","instances":[{"created_at":"2023-03-02T10:47:36.985415Z","id":"d98447cf-067d-4305-85d7-6e2b37008af6","ip_address":"10.65.68.57","region":"fr-par","status":"ready","updated_at":"2023-03-02T11:00:46.243611Z","zone":"fr-par-1"}],"ip":[{"id":"cadc082d-dfcd-4d33-84ac-1bb92807d7b5","ip_address":"51.159.205.18","lb_id":"36c702ad-45ee-4583-9160-17097b90b232","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-18.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-03-02T11:00:47.458540Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2024-03-25T16:48:57.613875Z","description":"a + description","frontend_count":0,"id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","instances":[{"created_at":"2024-03-25T16:42:56.944256Z","id":"32a7bfc4-e7c1-4517-99f7-4abc715e6de4","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:02.704171Z","zone":"fr-par-1"}],"ip":[{"id":"c0593960-c703-4d1a-9599-22e0095c9d8f","ip_address":"195.154.73.129","lb_id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-73-129.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:03.900943Z","zone":"fr-par-1"}' headers: Content-Length: - - "1114" + - "1151" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:16 GMT + - Mon, 25 Mar 2024 16:49:28 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -471,7 +471,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2a79b6c-a2fc-42dc-afd2-8323a2348b64 + - 23b606c5-78d2-4854-8706-3d47664f4b4e status: 200 OK code: 200 duration: "" @@ -480,24 +480,24 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/36c702ad-45ee-4583-9160-17097b90b232 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f method: GET response: - body: '{"backend_count":0,"created_at":"2023-03-02T11:00:45.669727Z","description":"a - description","frontend_count":0,"id":"36c702ad-45ee-4583-9160-17097b90b232","instances":[{"created_at":"2023-03-02T10:47:36.985415Z","id":"d98447cf-067d-4305-85d7-6e2b37008af6","ip_address":"10.65.68.57","region":"fr-par","status":"ready","updated_at":"2023-03-02T11:00:46.243611Z","zone":"fr-par-1"}],"ip":[{"id":"cadc082d-dfcd-4d33-84ac-1bb92807d7b5","ip_address":"51.159.205.18","lb_id":"36c702ad-45ee-4583-9160-17097b90b232","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-18.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-03-02T11:00:47.458540Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2024-03-25T16:48:57.613875Z","description":"a + description","frontend_count":0,"id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","instances":[{"created_at":"2024-03-25T16:42:56.944256Z","id":"32a7bfc4-e7c1-4517-99f7-4abc715e6de4","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:02.704171Z","zone":"fr-par-1"}],"ip":[{"id":"c0593960-c703-4d1a-9599-22e0095c9d8f","ip_address":"195.154.73.129","lb_id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-73-129.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:03.900943Z","zone":"fr-par-1"}' headers: Content-Length: - - "1114" + - "1151" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:16 GMT + - Mon, 25 Mar 2024 16:49:28 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -505,7 +505,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d5703bf-6bc6-4f5e-a04a-954b0049645a + - e0b694ab-1feb-420a-8c1e-0a1afc492f3b status: 200 OK code: 200 duration: "" @@ -514,9 +514,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/36c702ad-45ee-4583-9160-17097b90b232/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' @@ -528,9 +528,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:16 GMT + - Mon, 25 Mar 2024 16:49:28 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -538,7 +538,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb569af5-6e68-4e54-b256-5653cdaea7fd + - bfd16a88-fc49-4887-af5f-064e62433538 status: 200 OK code: 200 duration: "" @@ -547,23 +547,23 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cadc082d-dfcd-4d33-84ac-1bb92807d7b5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c5657896-d40d-407b-872b-29d43fff1ae3 method: GET response: - body: '{"id":"cadc082d-dfcd-4d33-84ac-1bb92807d7b5","ip_address":"51.159.205.18","lb_id":"36c702ad-45ee-4583-9160-17097b90b232","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-18.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"c5657896-d40d-407b-872b-29d43fff1ae3","ip_address":"195.154.72.7","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-72-7.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "319" + - "283" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:17 GMT + - Mon, 25 Mar 2024 16:49:29 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -571,7 +571,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14fb17fd-e37e-4c1a-87e9-647f4ab65fca + - b8de7999-b1d7-4629-95be-5a2ff39b3977 status: 200 OK code: 200 duration: "" @@ -580,23 +580,23 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cb1ee2e1-ce03-4dcf-a5fc-6270324320cf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c0593960-c703-4d1a-9599-22e0095c9d8f method: GET response: - body: '{"id":"cb1ee2e1-ce03-4dcf-a5fc-6270324320cf","ip_address":"51.159.26.98","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-98.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"c0593960-c703-4d1a-9599-22e0095c9d8f","ip_address":"195.154.73.129","lb_id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-73-129.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "283" + - "321" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:17 GMT + - Mon, 25 Mar 2024 16:49:29 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -604,7 +604,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08d39e6d-633b-49db-8786-536ddad0f9df + - 278fb5e9-f30a-4867-82e4-2b8290006b9d status: 200 OK code: 200 duration: "" @@ -613,24 +613,24 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/36c702ad-45ee-4583-9160-17097b90b232 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f method: GET response: - body: '{"backend_count":0,"created_at":"2023-03-02T11:00:45.669727Z","description":"a - description","frontend_count":0,"id":"36c702ad-45ee-4583-9160-17097b90b232","instances":[{"created_at":"2023-03-02T10:47:36.985415Z","id":"d98447cf-067d-4305-85d7-6e2b37008af6","ip_address":"10.65.68.57","region":"fr-par","status":"ready","updated_at":"2023-03-02T11:00:46.243611Z","zone":"fr-par-1"}],"ip":[{"id":"cadc082d-dfcd-4d33-84ac-1bb92807d7b5","ip_address":"51.159.205.18","lb_id":"36c702ad-45ee-4583-9160-17097b90b232","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-18.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-03-02T11:00:47.458540Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2024-03-25T16:48:57.613875Z","description":"a + description","frontend_count":0,"id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","instances":[{"created_at":"2024-03-25T16:42:56.944256Z","id":"32a7bfc4-e7c1-4517-99f7-4abc715e6de4","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:02.704171Z","zone":"fr-par-1"}],"ip":[{"id":"c0593960-c703-4d1a-9599-22e0095c9d8f","ip_address":"195.154.73.129","lb_id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-73-129.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:03.900943Z","zone":"fr-par-1"}' headers: Content-Length: - - "1114" + - "1151" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:17 GMT + - Mon, 25 Mar 2024 16:49:29 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -638,7 +638,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1a33067-602d-41df-9ebd-2c2ab99159dd + - 90636ded-3728-44f4-88d7-bf9c907cc087 status: 200 OK code: 200 duration: "" @@ -647,24 +647,24 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/36c702ad-45ee-4583-9160-17097b90b232 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f method: GET response: - body: '{"backend_count":0,"created_at":"2023-03-02T11:00:45.669727Z","description":"a - description","frontend_count":0,"id":"36c702ad-45ee-4583-9160-17097b90b232","instances":[{"created_at":"2023-03-02T10:47:36.985415Z","id":"d98447cf-067d-4305-85d7-6e2b37008af6","ip_address":"10.65.68.57","region":"fr-par","status":"ready","updated_at":"2023-03-02T11:00:46.243611Z","zone":"fr-par-1"}],"ip":[{"id":"cadc082d-dfcd-4d33-84ac-1bb92807d7b5","ip_address":"51.159.205.18","lb_id":"36c702ad-45ee-4583-9160-17097b90b232","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-18.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-03-02T11:00:47.458540Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2024-03-25T16:48:57.613875Z","description":"a + description","frontend_count":0,"id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","instances":[{"created_at":"2024-03-25T16:42:56.944256Z","id":"32a7bfc4-e7c1-4517-99f7-4abc715e6de4","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:02.704171Z","zone":"fr-par-1"}],"ip":[{"id":"c0593960-c703-4d1a-9599-22e0095c9d8f","ip_address":"195.154.73.129","lb_id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-73-129.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:03.900943Z","zone":"fr-par-1"}' headers: Content-Length: - - "1114" + - "1151" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:17 GMT + - Mon, 25 Mar 2024 16:49:29 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -672,7 +672,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b57cd93-1efa-45bf-9012-eb4c8b031dff + - ac8680af-2514-41da-a926-a6b89437afb3 status: 200 OK code: 200 duration: "" @@ -681,9 +681,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/36c702ad-45ee-4583-9160-17097b90b232/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' @@ -695,9 +695,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:17 GMT + - Mon, 25 Mar 2024 16:49:29 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -705,36 +705,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5cc91071-72b9-40c9-b6e2-9554069cb094 + - bbd60a08-8275-4bf3-92f5-4037470045df status: 200 OK code: 200 duration: "" - request: body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"tf-lb-datasource1","description":"a - description","ip_id":"cb1ee2e1-ce03-4dcf-a5fc-6270324320cf","tags":null,"type":"LB-S","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' + description","ip_id":"c5657896-d40d-407b-872b-29d43fff1ae3","ip_ids":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"LB-S","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs method: POST response: - body: '{"backend_count":0,"created_at":"2023-03-02T11:01:17.887168592Z","description":"a - description","frontend_count":0,"id":"1352d01c-81c5-464e-a9ec-6857ea92162d","instances":[],"ip":[{"id":"cb1ee2e1-ce03-4dcf-a5fc-6270324320cf","ip_address":"51.159.26.98","lb_id":"1352d01c-81c5-464e-a9ec-6857ea92162d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-98.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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-03-02T11:01:17.887168592Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2024-03-25T16:49:29.871609874Z","description":"a + description","frontend_count":0,"id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","instances":[],"ip":[{"id":"c5657896-d40d-407b-872b-29d43fff1ae3","ip_address":"195.154.72.7","lb_id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-72-7.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:29.871609874Z","zone":"fr-par-1"}' headers: Content-Length: - - "905" + - "951" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:18 GMT + - Mon, 25 Mar 2024 16:49:30 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -742,7 +742,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f641e4cc-57e2-48ff-84a1-d4bdd75e7d5e + - aba9c429-4bd7-454c-ba3f-32e66ef4964a status: 200 OK code: 200 duration: "" @@ -751,24 +751,24 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/1352d01c-81c5-464e-a9ec-6857ea92162d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/23d91fb9-bc6c-476d-9e6f-e0b37bbf714b method: GET response: - body: '{"backend_count":0,"created_at":"2023-03-02T11:01:17.887169Z","description":"a - description","frontend_count":0,"id":"1352d01c-81c5-464e-a9ec-6857ea92162d","instances":[],"ip":[{"id":"cb1ee2e1-ce03-4dcf-a5fc-6270324320cf","ip_address":"51.159.26.98","lb_id":"1352d01c-81c5-464e-a9ec-6857ea92162d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-98.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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-03-02T11:01:17.887169Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2024-03-25T16:49:29.871610Z","description":"a + description","frontend_count":0,"id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","instances":[],"ip":[{"id":"c5657896-d40d-407b-872b-29d43fff1ae3","ip_address":"195.154.72.7","lb_id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-72-7.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:29.871610Z","zone":"fr-par-1"}' headers: Content-Length: - - "899" + - "945" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:18 GMT + - Mon, 25 Mar 2024 16:49:30 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -776,7 +776,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8a7abfd-d6ee-4e29-915a-89873b47f71b + - 304d9c05-0f83-45ed-a6da-086582b64260 status: 200 OK code: 200 duration: "" @@ -785,24 +785,24 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/1352d01c-81c5-464e-a9ec-6857ea92162d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/23d91fb9-bc6c-476d-9e6f-e0b37bbf714b method: GET response: - body: '{"backend_count":0,"created_at":"2023-03-02T11:01:17.887169Z","description":"a - description","frontend_count":0,"id":"1352d01c-81c5-464e-a9ec-6857ea92162d","instances":[{"created_at":"2023-03-02T10:33:26.967697Z","id":"500adb56-e752-4fde-8467-d38d56716986","ip_address":"10.69.4.51","region":"fr-par","status":"ready","updated_at":"2023-03-02T11:01:18.577760Z","zone":"fr-par-1"}],"ip":[{"id":"cb1ee2e1-ce03-4dcf-a5fc-6270324320cf","ip_address":"51.159.26.98","lb_id":"1352d01c-81c5-464e-a9ec-6857ea92162d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-98.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-03-02T11:01:19.835275Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2024-03-25T16:49:29.871610Z","description":"a + description","frontend_count":0,"id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","instances":[{"created_at":"2024-03-25T16:42:47.321779Z","id":"e5ff9196-3185-44a9-805d-9b4b616fc974","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:35.080606Z","zone":"fr-par-1"}],"ip":[{"id":"c5657896-d40d-407b-872b-29d43fff1ae3","ip_address":"195.154.72.7","lb_id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-72-7.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:36.219270Z","zone":"fr-par-1"}' headers: Content-Length: - - "1111" + - "1147" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:48 GMT + - Mon, 25 Mar 2024 16:50:00 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -810,7 +810,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - afa3cbe4-0d7d-4bb4-bd8f-e9907efd245c + - 60a9ec76-5570-449f-bd0b-7f4ca5ebe273 status: 200 OK code: 200 duration: "" @@ -819,24 +819,24 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/1352d01c-81c5-464e-a9ec-6857ea92162d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/23d91fb9-bc6c-476d-9e6f-e0b37bbf714b method: GET response: - body: '{"backend_count":0,"created_at":"2023-03-02T11:01:17.887169Z","description":"a - description","frontend_count":0,"id":"1352d01c-81c5-464e-a9ec-6857ea92162d","instances":[{"created_at":"2023-03-02T10:33:26.967697Z","id":"500adb56-e752-4fde-8467-d38d56716986","ip_address":"10.69.4.51","region":"fr-par","status":"ready","updated_at":"2023-03-02T11:01:18.577760Z","zone":"fr-par-1"}],"ip":[{"id":"cb1ee2e1-ce03-4dcf-a5fc-6270324320cf","ip_address":"51.159.26.98","lb_id":"1352d01c-81c5-464e-a9ec-6857ea92162d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-98.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-03-02T11:01:19.835275Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2024-03-25T16:49:29.871610Z","description":"a + description","frontend_count":0,"id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","instances":[{"created_at":"2024-03-25T16:42:47.321779Z","id":"e5ff9196-3185-44a9-805d-9b4b616fc974","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:35.080606Z","zone":"fr-par-1"}],"ip":[{"id":"c5657896-d40d-407b-872b-29d43fff1ae3","ip_address":"195.154.72.7","lb_id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-72-7.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:36.219270Z","zone":"fr-par-1"}' headers: Content-Length: - - "1111" + - "1147" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:48 GMT + - Mon, 25 Mar 2024 16:50:00 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -844,7 +844,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 607707f4-7fe6-48ec-9fb8-7218a3d6d4ea + - b1dce719-a26e-4418-a371-49d465e609e6 status: 200 OK code: 200 duration: "" @@ -853,9 +853,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/1352d01c-81c5-464e-a9ec-6857ea92162d/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/23d91fb9-bc6c-476d-9e6f-e0b37bbf714b/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' @@ -867,9 +867,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:48 GMT + - Mon, 25 Mar 2024 16:50:00 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -877,7 +877,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 38898f18-dbe1-48ea-9315-2380a36465a0 + - b93e0bb1-1e41-4c5b-a3fe-98d057ffa829 status: 200 OK code: 200 duration: "" @@ -886,23 +886,23 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cadc082d-dfcd-4d33-84ac-1bb92807d7b5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c0593960-c703-4d1a-9599-22e0095c9d8f method: GET response: - body: '{"id":"cadc082d-dfcd-4d33-84ac-1bb92807d7b5","ip_address":"51.159.205.18","lb_id":"36c702ad-45ee-4583-9160-17097b90b232","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-18.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"c0593960-c703-4d1a-9599-22e0095c9d8f","ip_address":"195.154.73.129","lb_id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-73-129.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "319" + - "321" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:48 GMT + - Mon, 25 Mar 2024 16:50:00 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -910,7 +910,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 898803b6-ea39-4d97-ad5e-c2436e21dbbb + - 474ae631-77c0-41e1-92d7-a8718f615ea3 status: 200 OK code: 200 duration: "" @@ -919,12 +919,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cb1ee2e1-ce03-4dcf-a5fc-6270324320cf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c5657896-d40d-407b-872b-29d43fff1ae3 method: GET response: - body: '{"id":"cb1ee2e1-ce03-4dcf-a5fc-6270324320cf","ip_address":"51.159.26.98","lb_id":"1352d01c-81c5-464e-a9ec-6857ea92162d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-98.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"c5657896-d40d-407b-872b-29d43fff1ae3","ip_address":"195.154.72.7","lb_id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-72-7.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - "317" @@ -933,9 +933,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:48 GMT + - Mon, 25 Mar 2024 16:50:00 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -943,7 +943,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ad3763d-4999-432c-9c3b-20ada7cadb8f + - 65048f09-35ca-4819-80ba-30a278b52325 status: 200 OK code: 200 duration: "" @@ -952,24 +952,24 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/36c702ad-45ee-4583-9160-17097b90b232 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f method: GET response: - body: '{"backend_count":0,"created_at":"2023-03-02T11:00:45.669727Z","description":"a - description","frontend_count":0,"id":"36c702ad-45ee-4583-9160-17097b90b232","instances":[{"created_at":"2023-03-02T10:47:36.985415Z","id":"d98447cf-067d-4305-85d7-6e2b37008af6","ip_address":"10.65.68.57","region":"fr-par","status":"ready","updated_at":"2023-03-02T11:00:46.243611Z","zone":"fr-par-1"}],"ip":[{"id":"cadc082d-dfcd-4d33-84ac-1bb92807d7b5","ip_address":"51.159.205.18","lb_id":"36c702ad-45ee-4583-9160-17097b90b232","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-18.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-03-02T11:00:47.458540Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2024-03-25T16:48:57.613875Z","description":"a + description","frontend_count":0,"id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","instances":[{"created_at":"2024-03-25T16:42:56.944256Z","id":"32a7bfc4-e7c1-4517-99f7-4abc715e6de4","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:02.704171Z","zone":"fr-par-1"}],"ip":[{"id":"c0593960-c703-4d1a-9599-22e0095c9d8f","ip_address":"195.154.73.129","lb_id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-73-129.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:03.900943Z","zone":"fr-par-1"}' headers: Content-Length: - - "1114" + - "1151" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:48 GMT + - Mon, 25 Mar 2024 16:50:00 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -977,7 +977,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 591ea2fb-82fe-4ec4-9b6c-93a2bb2c19eb + - faf43f00-b3a3-47d6-b0a2-e50b69a3603a status: 200 OK code: 200 duration: "" @@ -986,24 +986,24 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/1352d01c-81c5-464e-a9ec-6857ea92162d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/23d91fb9-bc6c-476d-9e6f-e0b37bbf714b method: GET response: - body: '{"backend_count":0,"created_at":"2023-03-02T11:01:17.887169Z","description":"a - description","frontend_count":0,"id":"1352d01c-81c5-464e-a9ec-6857ea92162d","instances":[{"created_at":"2023-03-02T10:33:26.967697Z","id":"500adb56-e752-4fde-8467-d38d56716986","ip_address":"10.69.4.51","region":"fr-par","status":"ready","updated_at":"2023-03-02T11:01:18.577760Z","zone":"fr-par-1"}],"ip":[{"id":"cb1ee2e1-ce03-4dcf-a5fc-6270324320cf","ip_address":"51.159.26.98","lb_id":"1352d01c-81c5-464e-a9ec-6857ea92162d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-98.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-03-02T11:01:19.835275Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2024-03-25T16:49:29.871610Z","description":"a + description","frontend_count":0,"id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","instances":[{"created_at":"2024-03-25T16:42:47.321779Z","id":"e5ff9196-3185-44a9-805d-9b4b616fc974","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:35.080606Z","zone":"fr-par-1"}],"ip":[{"id":"c5657896-d40d-407b-872b-29d43fff1ae3","ip_address":"195.154.72.7","lb_id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-72-7.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:36.219270Z","zone":"fr-par-1"}' headers: Content-Length: - - "1111" + - "1147" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:48 GMT + - Mon, 25 Mar 2024 16:50:00 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1011,7 +1011,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb7dcfd2-63bf-4d39-9c11-6b783252b952 + - de2fbee4-ced2-4cb3-92db-6f0c55f6c65c status: 200 OK code: 200 duration: "" @@ -1020,24 +1020,24 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/1352d01c-81c5-464e-a9ec-6857ea92162d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f method: GET response: - body: '{"backend_count":0,"created_at":"2023-03-02T11:01:17.887169Z","description":"a - description","frontend_count":0,"id":"1352d01c-81c5-464e-a9ec-6857ea92162d","instances":[{"created_at":"2023-03-02T10:33:26.967697Z","id":"500adb56-e752-4fde-8467-d38d56716986","ip_address":"10.69.4.51","region":"fr-par","status":"ready","updated_at":"2023-03-02T11:01:18.577760Z","zone":"fr-par-1"}],"ip":[{"id":"cb1ee2e1-ce03-4dcf-a5fc-6270324320cf","ip_address":"51.159.26.98","lb_id":"1352d01c-81c5-464e-a9ec-6857ea92162d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-98.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-03-02T11:01:19.835275Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2024-03-25T16:48:57.613875Z","description":"a + description","frontend_count":0,"id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","instances":[{"created_at":"2024-03-25T16:42:56.944256Z","id":"32a7bfc4-e7c1-4517-99f7-4abc715e6de4","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:02.704171Z","zone":"fr-par-1"}],"ip":[{"id":"c0593960-c703-4d1a-9599-22e0095c9d8f","ip_address":"195.154.73.129","lb_id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-73-129.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:03.900943Z","zone":"fr-par-1"}' headers: Content-Length: - - "1111" + - "1151" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:49 GMT + - Mon, 25 Mar 2024 16:50:00 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1045,7 +1045,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 43304cdc-d804-4466-b04f-bdd6369a9803 + - c5217193-eea4-4027-9b92-b299f7acc69b status: 200 OK code: 200 duration: "" @@ -1054,24 +1054,24 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/36c702ad-45ee-4583-9160-17097b90b232 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/23d91fb9-bc6c-476d-9e6f-e0b37bbf714b method: GET response: - body: '{"backend_count":0,"created_at":"2023-03-02T11:00:45.669727Z","description":"a - description","frontend_count":0,"id":"36c702ad-45ee-4583-9160-17097b90b232","instances":[{"created_at":"2023-03-02T10:47:36.985415Z","id":"d98447cf-067d-4305-85d7-6e2b37008af6","ip_address":"10.65.68.57","region":"fr-par","status":"ready","updated_at":"2023-03-02T11:00:46.243611Z","zone":"fr-par-1"}],"ip":[{"id":"cadc082d-dfcd-4d33-84ac-1bb92807d7b5","ip_address":"51.159.205.18","lb_id":"36c702ad-45ee-4583-9160-17097b90b232","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-18.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-03-02T11:00:47.458540Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2024-03-25T16:49:29.871610Z","description":"a + description","frontend_count":0,"id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","instances":[{"created_at":"2024-03-25T16:42:47.321779Z","id":"e5ff9196-3185-44a9-805d-9b4b616fc974","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:35.080606Z","zone":"fr-par-1"}],"ip":[{"id":"c5657896-d40d-407b-872b-29d43fff1ae3","ip_address":"195.154.72.7","lb_id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-72-7.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:36.219270Z","zone":"fr-par-1"}' headers: Content-Length: - - "1114" + - "1147" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:49 GMT + - Mon, 25 Mar 2024 16:50:00 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1079,7 +1079,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1719bc6a-9642-462f-a3b2-d0eabe0e32f1 + - a1d780ee-90e8-4a39-a083-21a8e652588e status: 200 OK code: 200 duration: "" @@ -1088,9 +1088,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/1352d01c-81c5-464e-a9ec-6857ea92162d/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' @@ -1102,9 +1102,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:49 GMT + - Mon, 25 Mar 2024 16:50:00 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1112,7 +1112,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff792f3b-a4af-4b98-bae2-d21e80066217 + - bed8ade8-46ea-41e9-8ca5-5f03d00fdd67 status: 200 OK code: 200 duration: "" @@ -1121,9 +1121,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/36c702ad-45ee-4583-9160-17097b90b232/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/23d91fb9-bc6c-476d-9e6f-e0b37bbf714b/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' @@ -1135,9 +1135,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:49 GMT + - Mon, 25 Mar 2024 16:50:00 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1145,7 +1145,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 51f92f51-5574-4c42-86f1-61da6a1b1ae5 + - 09680db0-29e6-44b7-904b-d4f3ed7f0c40 status: 200 OK code: 200 duration: "" @@ -1154,23 +1154,23 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cb1ee2e1-ce03-4dcf-a5fc-6270324320cf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c0593960-c703-4d1a-9599-22e0095c9d8f method: GET response: - body: '{"id":"cb1ee2e1-ce03-4dcf-a5fc-6270324320cf","ip_address":"51.159.26.98","lb_id":"1352d01c-81c5-464e-a9ec-6857ea92162d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-98.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"c0593960-c703-4d1a-9599-22e0095c9d8f","ip_address":"195.154.73.129","lb_id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-73-129.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "317" + - "321" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:49 GMT + - Mon, 25 Mar 2024 16:50:01 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1178,7 +1178,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b5539e0-344e-4e3e-a79c-6631d38cf363 + - 4387cbcf-0bab-4840-811b-113a1a6e7f22 status: 200 OK code: 200 duration: "" @@ -1187,23 +1187,23 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cadc082d-dfcd-4d33-84ac-1bb92807d7b5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c5657896-d40d-407b-872b-29d43fff1ae3 method: GET response: - body: '{"id":"cadc082d-dfcd-4d33-84ac-1bb92807d7b5","ip_address":"51.159.205.18","lb_id":"36c702ad-45ee-4583-9160-17097b90b232","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-18.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"c5657896-d40d-407b-872b-29d43fff1ae3","ip_address":"195.154.72.7","lb_id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-72-7.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "319" + - "317" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:49 GMT + - Mon, 25 Mar 2024 16:50:01 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1211,7 +1211,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 647d93c8-a38f-4192-a08d-e3666af69e28 + - 51b5f506-85ae-4e76-94da-03df2a5b0339 status: 200 OK code: 200 duration: "" @@ -1220,24 +1220,24 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/1352d01c-81c5-464e-a9ec-6857ea92162d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f method: GET response: - body: '{"backend_count":0,"created_at":"2023-03-02T11:01:17.887169Z","description":"a - description","frontend_count":0,"id":"1352d01c-81c5-464e-a9ec-6857ea92162d","instances":[{"created_at":"2023-03-02T10:33:26.967697Z","id":"500adb56-e752-4fde-8467-d38d56716986","ip_address":"10.69.4.51","region":"fr-par","status":"ready","updated_at":"2023-03-02T11:01:18.577760Z","zone":"fr-par-1"}],"ip":[{"id":"cb1ee2e1-ce03-4dcf-a5fc-6270324320cf","ip_address":"51.159.26.98","lb_id":"1352d01c-81c5-464e-a9ec-6857ea92162d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-98.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-03-02T11:01:19.835275Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2024-03-25T16:48:57.613875Z","description":"a + description","frontend_count":0,"id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","instances":[{"created_at":"2024-03-25T16:42:56.944256Z","id":"32a7bfc4-e7c1-4517-99f7-4abc715e6de4","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:02.704171Z","zone":"fr-par-1"}],"ip":[{"id":"c0593960-c703-4d1a-9599-22e0095c9d8f","ip_address":"195.154.73.129","lb_id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-73-129.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:03.900943Z","zone":"fr-par-1"}' headers: Content-Length: - - "1111" + - "1151" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:49 GMT + - Mon, 25 Mar 2024 16:50:01 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1245,7 +1245,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1aaf8455-00d9-453a-b6cd-72beaf908101 + - 966190d9-47fb-49ca-8293-0739a931780a status: 200 OK code: 200 duration: "" @@ -1254,24 +1254,24 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/36c702ad-45ee-4583-9160-17097b90b232 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/23d91fb9-bc6c-476d-9e6f-e0b37bbf714b method: GET response: - body: '{"backend_count":0,"created_at":"2023-03-02T11:00:45.669727Z","description":"a - description","frontend_count":0,"id":"36c702ad-45ee-4583-9160-17097b90b232","instances":[{"created_at":"2023-03-02T10:47:36.985415Z","id":"d98447cf-067d-4305-85d7-6e2b37008af6","ip_address":"10.65.68.57","region":"fr-par","status":"ready","updated_at":"2023-03-02T11:00:46.243611Z","zone":"fr-par-1"}],"ip":[{"id":"cadc082d-dfcd-4d33-84ac-1bb92807d7b5","ip_address":"51.159.205.18","lb_id":"36c702ad-45ee-4583-9160-17097b90b232","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-18.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-03-02T11:00:47.458540Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2024-03-25T16:49:29.871610Z","description":"a + description","frontend_count":0,"id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","instances":[{"created_at":"2024-03-25T16:42:47.321779Z","id":"e5ff9196-3185-44a9-805d-9b4b616fc974","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:35.080606Z","zone":"fr-par-1"}],"ip":[{"id":"c5657896-d40d-407b-872b-29d43fff1ae3","ip_address":"195.154.72.7","lb_id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-72-7.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:36.219270Z","zone":"fr-par-1"}' headers: Content-Length: - - "1114" + - "1147" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:49 GMT + - Mon, 25 Mar 2024 16:50:01 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1279,7 +1279,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be5ab017-5381-41e5-ad86-2f3bd2d64615 + - 0587fe90-fce6-47a3-9e42-bdf129f9332e status: 200 OK code: 200 duration: "" @@ -1288,24 +1288,24 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/36c702ad-45ee-4583-9160-17097b90b232 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f method: GET response: - body: '{"backend_count":0,"created_at":"2023-03-02T11:00:45.669727Z","description":"a - description","frontend_count":0,"id":"36c702ad-45ee-4583-9160-17097b90b232","instances":[{"created_at":"2023-03-02T10:47:36.985415Z","id":"d98447cf-067d-4305-85d7-6e2b37008af6","ip_address":"10.65.68.57","region":"fr-par","status":"ready","updated_at":"2023-03-02T11:00:46.243611Z","zone":"fr-par-1"}],"ip":[{"id":"cadc082d-dfcd-4d33-84ac-1bb92807d7b5","ip_address":"51.159.205.18","lb_id":"36c702ad-45ee-4583-9160-17097b90b232","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-18.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-03-02T11:00:47.458540Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2024-03-25T16:48:57.613875Z","description":"a + description","frontend_count":0,"id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","instances":[{"created_at":"2024-03-25T16:42:56.944256Z","id":"32a7bfc4-e7c1-4517-99f7-4abc715e6de4","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:02.704171Z","zone":"fr-par-1"}],"ip":[{"id":"c0593960-c703-4d1a-9599-22e0095c9d8f","ip_address":"195.154.73.129","lb_id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-73-129.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:03.900943Z","zone":"fr-par-1"}' headers: Content-Length: - - "1114" + - "1151" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:49 GMT + - Mon, 25 Mar 2024 16:50:01 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1313,7 +1313,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00086ad5-13a5-49a6-a503-eb0e931935df + - e28561fb-1fb8-4fb2-9cfd-e73c5d53dd1c status: 200 OK code: 200 duration: "" @@ -1322,24 +1322,24 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/1352d01c-81c5-464e-a9ec-6857ea92162d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/23d91fb9-bc6c-476d-9e6f-e0b37bbf714b method: GET response: - body: '{"backend_count":0,"created_at":"2023-03-02T11:01:17.887169Z","description":"a - description","frontend_count":0,"id":"1352d01c-81c5-464e-a9ec-6857ea92162d","instances":[{"created_at":"2023-03-02T10:33:26.967697Z","id":"500adb56-e752-4fde-8467-d38d56716986","ip_address":"10.69.4.51","region":"fr-par","status":"ready","updated_at":"2023-03-02T11:01:18.577760Z","zone":"fr-par-1"}],"ip":[{"id":"cb1ee2e1-ce03-4dcf-a5fc-6270324320cf","ip_address":"51.159.26.98","lb_id":"1352d01c-81c5-464e-a9ec-6857ea92162d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-98.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-03-02T11:01:19.835275Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2024-03-25T16:49:29.871610Z","description":"a + description","frontend_count":0,"id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","instances":[{"created_at":"2024-03-25T16:42:47.321779Z","id":"e5ff9196-3185-44a9-805d-9b4b616fc974","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:35.080606Z","zone":"fr-par-1"}],"ip":[{"id":"c5657896-d40d-407b-872b-29d43fff1ae3","ip_address":"195.154.72.7","lb_id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-72-7.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:36.219270Z","zone":"fr-par-1"}' headers: Content-Length: - - "1111" + - "1147" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:49 GMT + - Mon, 25 Mar 2024 16:50:01 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1347,7 +1347,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34057984-cff0-496d-a818-d74b5ab405c3 + - 763ad3c9-5ec7-47be-8797-64addd0995f9 status: 200 OK code: 200 duration: "" @@ -1356,9 +1356,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/1352d01c-81c5-464e-a9ec-6857ea92162d/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' @@ -1370,9 +1370,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:49 GMT + - Mon, 25 Mar 2024 16:50:01 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1380,7 +1380,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2b16a4f-8d69-47ec-b868-569ae790e5f2 + - 3833a194-c1bd-49a4-bfac-6fc28afab2d4 status: 200 OK code: 200 duration: "" @@ -1389,9 +1389,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/36c702ad-45ee-4583-9160-17097b90b232/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/23d91fb9-bc6c-476d-9e6f-e0b37bbf714b/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' @@ -1403,9 +1403,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:49 GMT + - Mon, 25 Mar 2024 16:50:01 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1413,7 +1413,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 844a9788-a732-4888-821b-1b59f4150334 + - 97bef609-421a-448a-b2bb-0385f0862b7a status: 200 OK code: 200 duration: "" @@ -1422,8 +1422,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane url: https://api.scaleway.com/lb/v1/zones/fr-par-2/lbs?name=tf-lb-datasource&order_by=created_at_asc method: GET response: @@ -1436,9 +1436,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:49 GMT + - Mon, 25 Mar 2024 16:50:01 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1446,7 +1446,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - edc0e755-4dd1-4b0b-b80a-ab445db5f67d + - b1ba8ab9-f5a4-4f45-8725-2de7d8dcad94 status: 200 OK code: 200 duration: "" @@ -1455,25 +1455,60 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs?name=tf-lb-datasource&order_by=created_at_asc method: GET response: - body: '{"lbs":[{"backend_count":0,"created_at":"2023-03-02T11:00:45.669727Z","description":"a - description","frontend_count":0,"id":"36c702ad-45ee-4583-9160-17097b90b232","instances":[{"created_at":"2023-03-02T10:47:36.985415Z","id":"d98447cf-067d-4305-85d7-6e2b37008af6","ip_address":"10.65.68.57","region":"fr-par","status":"ready","updated_at":"2023-03-02T11:00:46.243611Z","zone":"fr-par-1"}],"ip":[{"id":"cadc082d-dfcd-4d33-84ac-1bb92807d7b5","ip_address":"51.159.205.18","lb_id":"36c702ad-45ee-4583-9160-17097b90b232","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-18.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-03-02T11:00:47.458540Z","zone":"fr-par-1"},{"backend_count":0,"created_at":"2023-03-02T11:01:17.887169Z","description":"a - description","frontend_count":0,"id":"1352d01c-81c5-464e-a9ec-6857ea92162d","instances":[{"created_at":"2023-03-02T10:33:26.967697Z","id":"500adb56-e752-4fde-8467-d38d56716986","ip_address":"10.69.4.51","region":"fr-par","status":"ready","updated_at":"2023-03-02T11:01:18.577760Z","zone":"fr-par-1"}],"ip":[{"id":"cb1ee2e1-ce03-4dcf-a5fc-6270324320cf","ip_address":"51.159.26.98","lb_id":"1352d01c-81c5-464e-a9ec-6857ea92162d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-98.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-03-02T11:01:19.835275Z","zone":"fr-par-1"}],"total_count":2}' + body: '{"lbs":[{"backend_count":0,"created_at":"2024-03-25T16:48:57.613875Z","description":"a + description","frontend_count":0,"id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","instances":[{"created_at":"2024-03-25T16:42:56.944256Z","id":"32a7bfc4-e7c1-4517-99f7-4abc715e6de4","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:02.704171Z","zone":"fr-par-1"}],"ip":[{"id":"c0593960-c703-4d1a-9599-22e0095c9d8f","ip_address":"195.154.73.129","lb_id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-73-129.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:03.900943Z","zone":"fr-par-1"},{"backend_count":0,"created_at":"2024-03-25T16:49:29.871610Z","description":"a + description","frontend_count":0,"id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","instances":[{"created_at":"2024-03-25T16:42:47.321779Z","id":"e5ff9196-3185-44a9-805d-9b4b616fc974","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:35.080606Z","zone":"fr-par-1"}],"ip":[{"id":"c5657896-d40d-407b-872b-29d43fff1ae3","ip_address":"195.154.72.7","lb_id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-72-7.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:36.219270Z","zone":"fr-par-1"}],"total_count":2}' + headers: + Content-Length: + - "2327" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 25 Mar 2024 16:50:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b427e7b7-166f-458e-b68c-a02a4b1bf244 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs?order_by=created_at_asc&tags=terraform-test&tags=data_scaleway_lbs + method: GET + response: + body: '{"lbs":[{"backend_count":0,"created_at":"2024-03-25T16:48:57.613875Z","description":"a + description","frontend_count":0,"id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","instances":[{"created_at":"2024-03-25T16:42:56.944256Z","id":"32a7bfc4-e7c1-4517-99f7-4abc715e6de4","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:02.704171Z","zone":"fr-par-1"}],"ip":[{"id":"c0593960-c703-4d1a-9599-22e0095c9d8f","ip_address":"195.154.73.129","lb_id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-73-129.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:03.900943Z","zone":"fr-par-1"},{"backend_count":0,"created_at":"2024-03-25T16:49:29.871610Z","description":"a + description","frontend_count":0,"id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","instances":[{"created_at":"2024-03-25T16:42:47.321779Z","id":"e5ff9196-3185-44a9-805d-9b4b616fc974","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:35.080606Z","zone":"fr-par-1"}],"ip":[{"id":"c5657896-d40d-407b-872b-29d43fff1ae3","ip_address":"195.154.72.7","lb_id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-72-7.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:36.219270Z","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "2254" + - "2327" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:49 GMT + - Mon, 25 Mar 2024 16:50:01 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1481,7 +1516,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2762863c-3635-4211-9544-dcbe3aef003f + - 393e5c46-f30b-4e25-a065-7c2a1da0c8a9 status: 200 OK code: 200 duration: "" @@ -1490,8 +1525,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane url: https://api.scaleway.com/lb/v1/zones/fr-par-2/lbs?name=tf-lb-datasource&order_by=created_at_asc method: GET response: @@ -1504,9 +1539,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:49 GMT + - Mon, 25 Mar 2024 16:50:01 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1514,7 +1549,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b1cb7df-f5d2-405b-8c24-7416400172fd + - 95c1fceb-dc2d-4ee4-8ea0-ae4d055e1081 status: 200 OK code: 200 duration: "" @@ -1523,25 +1558,60 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs?name=tf-lb-datasource&order_by=created_at_asc method: GET response: - body: '{"lbs":[{"backend_count":0,"created_at":"2023-03-02T11:00:45.669727Z","description":"a - description","frontend_count":0,"id":"36c702ad-45ee-4583-9160-17097b90b232","instances":[{"created_at":"2023-03-02T10:47:36.985415Z","id":"d98447cf-067d-4305-85d7-6e2b37008af6","ip_address":"10.65.68.57","region":"fr-par","status":"ready","updated_at":"2023-03-02T11:00:46.243611Z","zone":"fr-par-1"}],"ip":[{"id":"cadc082d-dfcd-4d33-84ac-1bb92807d7b5","ip_address":"51.159.205.18","lb_id":"36c702ad-45ee-4583-9160-17097b90b232","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-18.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-03-02T11:00:47.458540Z","zone":"fr-par-1"},{"backend_count":0,"created_at":"2023-03-02T11:01:17.887169Z","description":"a - description","frontend_count":0,"id":"1352d01c-81c5-464e-a9ec-6857ea92162d","instances":[{"created_at":"2023-03-02T10:33:26.967697Z","id":"500adb56-e752-4fde-8467-d38d56716986","ip_address":"10.69.4.51","region":"fr-par","status":"ready","updated_at":"2023-03-02T11:01:18.577760Z","zone":"fr-par-1"}],"ip":[{"id":"cb1ee2e1-ce03-4dcf-a5fc-6270324320cf","ip_address":"51.159.26.98","lb_id":"1352d01c-81c5-464e-a9ec-6857ea92162d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-98.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-03-02T11:01:19.835275Z","zone":"fr-par-1"}],"total_count":2}' + body: '{"lbs":[{"backend_count":0,"created_at":"2024-03-25T16:48:57.613875Z","description":"a + description","frontend_count":0,"id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","instances":[{"created_at":"2024-03-25T16:42:56.944256Z","id":"32a7bfc4-e7c1-4517-99f7-4abc715e6de4","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:02.704171Z","zone":"fr-par-1"}],"ip":[{"id":"c0593960-c703-4d1a-9599-22e0095c9d8f","ip_address":"195.154.73.129","lb_id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-73-129.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:03.900943Z","zone":"fr-par-1"},{"backend_count":0,"created_at":"2024-03-25T16:49:29.871610Z","description":"a + description","frontend_count":0,"id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","instances":[{"created_at":"2024-03-25T16:42:47.321779Z","id":"e5ff9196-3185-44a9-805d-9b4b616fc974","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:35.080606Z","zone":"fr-par-1"}],"ip":[{"id":"c5657896-d40d-407b-872b-29d43fff1ae3","ip_address":"195.154.72.7","lb_id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-72-7.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:36.219270Z","zone":"fr-par-1"}],"total_count":2}' + headers: + Content-Length: + - "2327" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 25 Mar 2024 16:50:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c6e1a9e4-a927-46a3-8c75-b41dd655cecd + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs?order_by=created_at_asc&tags=terraform-test&tags=data_scaleway_lbs + method: GET + response: + body: '{"lbs":[{"backend_count":0,"created_at":"2024-03-25T16:48:57.613875Z","description":"a + description","frontend_count":0,"id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","instances":[{"created_at":"2024-03-25T16:42:56.944256Z","id":"32a7bfc4-e7c1-4517-99f7-4abc715e6de4","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:02.704171Z","zone":"fr-par-1"}],"ip":[{"id":"c0593960-c703-4d1a-9599-22e0095c9d8f","ip_address":"195.154.73.129","lb_id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-73-129.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:03.900943Z","zone":"fr-par-1"},{"backend_count":0,"created_at":"2024-03-25T16:49:29.871610Z","description":"a + description","frontend_count":0,"id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","instances":[{"created_at":"2024-03-25T16:42:47.321779Z","id":"e5ff9196-3185-44a9-805d-9b4b616fc974","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:35.080606Z","zone":"fr-par-1"}],"ip":[{"id":"c5657896-d40d-407b-872b-29d43fff1ae3","ip_address":"195.154.72.7","lb_id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-72-7.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:36.219270Z","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "2254" + - "2327" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:49 GMT + - Mon, 25 Mar 2024 16:50:02 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1549,7 +1619,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8f635b3-d1f4-4160-bff3-6a25b30c437b + - 2f450e1a-4ede-4cf6-b191-bd009f38288d status: 200 OK code: 200 duration: "" @@ -1558,8 +1628,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane url: https://api.scaleway.com/lb/v1/zones/fr-par-2/lbs?name=tf-lb-datasource&order_by=created_at_asc method: GET response: @@ -1572,9 +1642,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:50 GMT + - Mon, 25 Mar 2024 16:50:02 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1582,7 +1652,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c9263ce-9e2a-4d21-ae25-4a0c96964f5c + - 9ad53999-6977-4eed-a487-95db77487d69 status: 200 OK code: 200 duration: "" @@ -1591,25 +1661,25 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs?name=tf-lb-datasource&order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs?order_by=created_at_asc&tags=terraform-test&tags=data_scaleway_lbs method: GET response: - body: '{"lbs":[{"backend_count":0,"created_at":"2023-03-02T11:00:45.669727Z","description":"a - description","frontend_count":0,"id":"36c702ad-45ee-4583-9160-17097b90b232","instances":[{"created_at":"2023-03-02T10:47:36.985415Z","id":"d98447cf-067d-4305-85d7-6e2b37008af6","ip_address":"10.65.68.57","region":"fr-par","status":"ready","updated_at":"2023-03-02T11:00:46.243611Z","zone":"fr-par-1"}],"ip":[{"id":"cadc082d-dfcd-4d33-84ac-1bb92807d7b5","ip_address":"51.159.205.18","lb_id":"36c702ad-45ee-4583-9160-17097b90b232","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-18.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-03-02T11:00:47.458540Z","zone":"fr-par-1"},{"backend_count":0,"created_at":"2023-03-02T11:01:17.887169Z","description":"a - description","frontend_count":0,"id":"1352d01c-81c5-464e-a9ec-6857ea92162d","instances":[{"created_at":"2023-03-02T10:33:26.967697Z","id":"500adb56-e752-4fde-8467-d38d56716986","ip_address":"10.69.4.51","region":"fr-par","status":"ready","updated_at":"2023-03-02T11:01:18.577760Z","zone":"fr-par-1"}],"ip":[{"id":"cb1ee2e1-ce03-4dcf-a5fc-6270324320cf","ip_address":"51.159.26.98","lb_id":"1352d01c-81c5-464e-a9ec-6857ea92162d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-98.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-03-02T11:01:19.835275Z","zone":"fr-par-1"}],"total_count":2}' + body: '{"lbs":[{"backend_count":0,"created_at":"2024-03-25T16:48:57.613875Z","description":"a + description","frontend_count":0,"id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","instances":[{"created_at":"2024-03-25T16:42:56.944256Z","id":"32a7bfc4-e7c1-4517-99f7-4abc715e6de4","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:02.704171Z","zone":"fr-par-1"}],"ip":[{"id":"c0593960-c703-4d1a-9599-22e0095c9d8f","ip_address":"195.154.73.129","lb_id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-73-129.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:03.900943Z","zone":"fr-par-1"},{"backend_count":0,"created_at":"2024-03-25T16:49:29.871610Z","description":"a + description","frontend_count":0,"id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","instances":[{"created_at":"2024-03-25T16:42:47.321779Z","id":"e5ff9196-3185-44a9-805d-9b4b616fc974","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:35.080606Z","zone":"fr-par-1"}],"ip":[{"id":"c5657896-d40d-407b-872b-29d43fff1ae3","ip_address":"195.154.72.7","lb_id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-72-7.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:36.219270Z","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "2254" + - "2327" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:50 GMT + - Mon, 25 Mar 2024 16:50:02 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1617,7 +1687,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a15527f0-39ee-4b25-8a40-382dae21bd37 + - b87a02d7-9b7b-4fd8-9d3e-b8de4807a010 status: 200 OK code: 200 duration: "" @@ -1626,23 +1696,25 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cadc082d-dfcd-4d33-84ac-1bb92807d7b5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs?name=tf-lb-datasource&order_by=created_at_asc method: GET response: - body: '{"id":"cadc082d-dfcd-4d33-84ac-1bb92807d7b5","ip_address":"51.159.205.18","lb_id":"36c702ad-45ee-4583-9160-17097b90b232","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-18.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"lbs":[{"backend_count":0,"created_at":"2024-03-25T16:48:57.613875Z","description":"a + description","frontend_count":0,"id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","instances":[{"created_at":"2024-03-25T16:42:56.944256Z","id":"32a7bfc4-e7c1-4517-99f7-4abc715e6de4","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:02.704171Z","zone":"fr-par-1"}],"ip":[{"id":"c0593960-c703-4d1a-9599-22e0095c9d8f","ip_address":"195.154.73.129","lb_id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-73-129.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:03.900943Z","zone":"fr-par-1"},{"backend_count":0,"created_at":"2024-03-25T16:49:29.871610Z","description":"a + description","frontend_count":0,"id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","instances":[{"created_at":"2024-03-25T16:42:47.321779Z","id":"e5ff9196-3185-44a9-805d-9b4b616fc974","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:35.080606Z","zone":"fr-par-1"}],"ip":[{"id":"c5657896-d40d-407b-872b-29d43fff1ae3","ip_address":"195.154.72.7","lb_id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-72-7.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:36.219270Z","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "319" + - "2327" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:50 GMT + - Mon, 25 Mar 2024 16:50:02 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1650,7 +1722,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e143b5f-7655-4e86-8c1a-34f2f3706e98 + - 04b591be-09f8-4b94-ac89-5f11c4b8b5ed status: 200 OK code: 200 duration: "" @@ -1659,12 +1731,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cb1ee2e1-ce03-4dcf-a5fc-6270324320cf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c5657896-d40d-407b-872b-29d43fff1ae3 method: GET response: - body: '{"id":"cb1ee2e1-ce03-4dcf-a5fc-6270324320cf","ip_address":"51.159.26.98","lb_id":"1352d01c-81c5-464e-a9ec-6857ea92162d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-98.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"c5657896-d40d-407b-872b-29d43fff1ae3","ip_address":"195.154.72.7","lb_id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-72-7.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - "317" @@ -1673,9 +1745,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:50 GMT + - Mon, 25 Mar 2024 16:50:02 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1683,7 +1755,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09d4f2fc-2aa9-4cc3-92bd-f863d1735f49 + - e1c509f2-79ce-4026-afb1-026b997d9bda status: 200 OK code: 200 duration: "" @@ -1692,24 +1764,23 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/36c702ad-45ee-4583-9160-17097b90b232 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c0593960-c703-4d1a-9599-22e0095c9d8f method: GET response: - body: '{"backend_count":0,"created_at":"2023-03-02T11:00:45.669727Z","description":"a - description","frontend_count":0,"id":"36c702ad-45ee-4583-9160-17097b90b232","instances":[{"created_at":"2023-03-02T10:47:36.985415Z","id":"d98447cf-067d-4305-85d7-6e2b37008af6","ip_address":"10.65.68.57","region":"fr-par","status":"ready","updated_at":"2023-03-02T11:00:46.243611Z","zone":"fr-par-1"}],"ip":[{"id":"cadc082d-dfcd-4d33-84ac-1bb92807d7b5","ip_address":"51.159.205.18","lb_id":"36c702ad-45ee-4583-9160-17097b90b232","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-18.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-03-02T11:00:47.458540Z","zone":"fr-par-1"}' + body: '{"id":"c0593960-c703-4d1a-9599-22e0095c9d8f","ip_address":"195.154.73.129","lb_id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-73-129.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "1114" + - "321" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:50 GMT + - Mon, 25 Mar 2024 16:50:02 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1717,7 +1788,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88ecae94-4952-467e-9655-e0648c40cd51 + - 248f38cc-a435-498d-95ce-bed47ab70361 status: 200 OK code: 200 duration: "" @@ -1726,24 +1797,24 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/1352d01c-81c5-464e-a9ec-6857ea92162d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f method: GET response: - body: '{"backend_count":0,"created_at":"2023-03-02T11:01:17.887169Z","description":"a - description","frontend_count":0,"id":"1352d01c-81c5-464e-a9ec-6857ea92162d","instances":[{"created_at":"2023-03-02T10:33:26.967697Z","id":"500adb56-e752-4fde-8467-d38d56716986","ip_address":"10.69.4.51","region":"fr-par","status":"ready","updated_at":"2023-03-02T11:01:18.577760Z","zone":"fr-par-1"}],"ip":[{"id":"cb1ee2e1-ce03-4dcf-a5fc-6270324320cf","ip_address":"51.159.26.98","lb_id":"1352d01c-81c5-464e-a9ec-6857ea92162d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-98.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-03-02T11:01:19.835275Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2024-03-25T16:48:57.613875Z","description":"a + description","frontend_count":0,"id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","instances":[{"created_at":"2024-03-25T16:42:56.944256Z","id":"32a7bfc4-e7c1-4517-99f7-4abc715e6de4","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:02.704171Z","zone":"fr-par-1"}],"ip":[{"id":"c0593960-c703-4d1a-9599-22e0095c9d8f","ip_address":"195.154.73.129","lb_id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-73-129.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:03.900943Z","zone":"fr-par-1"}' headers: Content-Length: - - "1111" + - "1151" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:50 GMT + - Mon, 25 Mar 2024 16:50:02 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1751,7 +1822,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6f0dc9d-323f-474f-a3c0-bc0ebd03bf39 + - aa25c0b7-ad43-4406-9f35-cf51a61d53ca status: 200 OK code: 200 duration: "" @@ -1760,24 +1831,24 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/36c702ad-45ee-4583-9160-17097b90b232 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/23d91fb9-bc6c-476d-9e6f-e0b37bbf714b method: GET response: - body: '{"backend_count":0,"created_at":"2023-03-02T11:00:45.669727Z","description":"a - description","frontend_count":0,"id":"36c702ad-45ee-4583-9160-17097b90b232","instances":[{"created_at":"2023-03-02T10:47:36.985415Z","id":"d98447cf-067d-4305-85d7-6e2b37008af6","ip_address":"10.65.68.57","region":"fr-par","status":"ready","updated_at":"2023-03-02T11:00:46.243611Z","zone":"fr-par-1"}],"ip":[{"id":"cadc082d-dfcd-4d33-84ac-1bb92807d7b5","ip_address":"51.159.205.18","lb_id":"36c702ad-45ee-4583-9160-17097b90b232","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-18.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-03-02T11:00:47.458540Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2024-03-25T16:49:29.871610Z","description":"a + description","frontend_count":0,"id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","instances":[{"created_at":"2024-03-25T16:42:47.321779Z","id":"e5ff9196-3185-44a9-805d-9b4b616fc974","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:35.080606Z","zone":"fr-par-1"}],"ip":[{"id":"c5657896-d40d-407b-872b-29d43fff1ae3","ip_address":"195.154.72.7","lb_id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-72-7.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:36.219270Z","zone":"fr-par-1"}' headers: Content-Length: - - "1114" + - "1147" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:50 GMT + - Mon, 25 Mar 2024 16:50:02 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1785,7 +1856,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c3b9c5d-f78e-4313-9cb1-cb49ffc778f8 + - 684c5df4-d881-4d2f-ba6c-e979ca4b128d status: 200 OK code: 200 duration: "" @@ -1794,24 +1865,24 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/1352d01c-81c5-464e-a9ec-6857ea92162d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f method: GET response: - body: '{"backend_count":0,"created_at":"2023-03-02T11:01:17.887169Z","description":"a - description","frontend_count":0,"id":"1352d01c-81c5-464e-a9ec-6857ea92162d","instances":[{"created_at":"2023-03-02T10:33:26.967697Z","id":"500adb56-e752-4fde-8467-d38d56716986","ip_address":"10.69.4.51","region":"fr-par","status":"ready","updated_at":"2023-03-02T11:01:18.577760Z","zone":"fr-par-1"}],"ip":[{"id":"cb1ee2e1-ce03-4dcf-a5fc-6270324320cf","ip_address":"51.159.26.98","lb_id":"1352d01c-81c5-464e-a9ec-6857ea92162d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-98.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-03-02T11:01:19.835275Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2024-03-25T16:48:57.613875Z","description":"a + description","frontend_count":0,"id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","instances":[{"created_at":"2024-03-25T16:42:56.944256Z","id":"32a7bfc4-e7c1-4517-99f7-4abc715e6de4","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:02.704171Z","zone":"fr-par-1"}],"ip":[{"id":"c0593960-c703-4d1a-9599-22e0095c9d8f","ip_address":"195.154.73.129","lb_id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-73-129.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:03.900943Z","zone":"fr-par-1"}' headers: Content-Length: - - "1111" + - "1151" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:50 GMT + - Mon, 25 Mar 2024 16:50:02 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1819,7 +1890,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 380584f4-3a87-4ef5-acdc-1ceb9ff22672 + - 60faed9b-460b-4ce7-b29f-0f9f9ea6a8d2 status: 200 OK code: 200 duration: "" @@ -1828,9 +1899,43 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/36c702ad-45ee-4583-9160-17097b90b232/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/23d91fb9-bc6c-476d-9e6f-e0b37bbf714b + method: GET + response: + body: '{"backend_count":0,"created_at":"2024-03-25T16:49:29.871610Z","description":"a + description","frontend_count":0,"id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","instances":[{"created_at":"2024-03-25T16:42:47.321779Z","id":"e5ff9196-3185-44a9-805d-9b4b616fc974","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:35.080606Z","zone":"fr-par-1"}],"ip":[{"id":"c5657896-d40d-407b-872b-29d43fff1ae3","ip_address":"195.154.72.7","lb_id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-72-7.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:36.219270Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1147" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 25 Mar 2024 16:50:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 83c05e42-9475-49af-8941-f3ef8a11a071 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' @@ -1842,9 +1947,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:50 GMT + - Mon, 25 Mar 2024 16:50:02 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1852,7 +1957,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04987aad-14ff-4a24-afdc-9b713df65d8b + - 7c1e5679-1336-44c2-a9cd-91afdf6b1015 status: 200 OK code: 200 duration: "" @@ -1861,9 +1966,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/1352d01c-81c5-464e-a9ec-6857ea92162d/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/23d91fb9-bc6c-476d-9e6f-e0b37bbf714b/private-networks?order_by=created_at_asc method: GET response: body: '{"private_network":[],"total_count":0}' @@ -1875,9 +1980,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:50 GMT + - Mon, 25 Mar 2024 16:50:02 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1885,7 +1990,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c984eeca-6576-4e2f-ba14-f40a2a6bc4c9 + - c3ee6157-e9d6-444f-9485-388a567890aa status: 200 OK code: 200 duration: "" @@ -1894,8 +1999,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane url: https://api.scaleway.com/lb/v1/zones/fr-par-2/lbs?name=tf-lb-datasource&order_by=created_at_asc method: GET response: @@ -1908,9 +2013,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:50 GMT + - Mon, 25 Mar 2024 16:50:03 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1918,7 +2023,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 498ada08-1cf2-4268-bd03-d07a9a859b5b + - 6f575ea2-65bf-4697-b73a-8a028f49a8fc status: 200 OK code: 200 duration: "" @@ -1927,25 +2032,60 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs?order_by=created_at_asc&tags=terraform-test&tags=data_scaleway_lbs + method: GET + response: + body: '{"lbs":[{"backend_count":0,"created_at":"2024-03-25T16:48:57.613875Z","description":"a + description","frontend_count":0,"id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","instances":[{"created_at":"2024-03-25T16:42:56.944256Z","id":"32a7bfc4-e7c1-4517-99f7-4abc715e6de4","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:02.704171Z","zone":"fr-par-1"}],"ip":[{"id":"c0593960-c703-4d1a-9599-22e0095c9d8f","ip_address":"195.154.73.129","lb_id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-73-129.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:03.900943Z","zone":"fr-par-1"},{"backend_count":0,"created_at":"2024-03-25T16:49:29.871610Z","description":"a + description","frontend_count":0,"id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","instances":[{"created_at":"2024-03-25T16:42:47.321779Z","id":"e5ff9196-3185-44a9-805d-9b4b616fc974","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:35.080606Z","zone":"fr-par-1"}],"ip":[{"id":"c5657896-d40d-407b-872b-29d43fff1ae3","ip_address":"195.154.72.7","lb_id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-72-7.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:36.219270Z","zone":"fr-par-1"}],"total_count":2}' + headers: + Content-Length: + - "2327" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 25 Mar 2024 16:50:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fa67432d-630f-4c34-a29e-d27fb1f375ce + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs?name=tf-lb-datasource&order_by=created_at_asc method: GET response: - body: '{"lbs":[{"backend_count":0,"created_at":"2023-03-02T11:00:45.669727Z","description":"a - description","frontend_count":0,"id":"36c702ad-45ee-4583-9160-17097b90b232","instances":[{"created_at":"2023-03-02T10:47:36.985415Z","id":"d98447cf-067d-4305-85d7-6e2b37008af6","ip_address":"10.65.68.57","region":"fr-par","status":"ready","updated_at":"2023-03-02T11:00:46.243611Z","zone":"fr-par-1"}],"ip":[{"id":"cadc082d-dfcd-4d33-84ac-1bb92807d7b5","ip_address":"51.159.205.18","lb_id":"36c702ad-45ee-4583-9160-17097b90b232","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-18.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-03-02T11:00:47.458540Z","zone":"fr-par-1"},{"backend_count":0,"created_at":"2023-03-02T11:01:17.887169Z","description":"a - description","frontend_count":0,"id":"1352d01c-81c5-464e-a9ec-6857ea92162d","instances":[{"created_at":"2023-03-02T10:33:26.967697Z","id":"500adb56-e752-4fde-8467-d38d56716986","ip_address":"10.69.4.51","region":"fr-par","status":"ready","updated_at":"2023-03-02T11:01:18.577760Z","zone":"fr-par-1"}],"ip":[{"id":"cb1ee2e1-ce03-4dcf-a5fc-6270324320cf","ip_address":"51.159.26.98","lb_id":"1352d01c-81c5-464e-a9ec-6857ea92162d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-98.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-03-02T11:01:19.835275Z","zone":"fr-par-1"}],"total_count":2}' + body: '{"lbs":[{"backend_count":0,"created_at":"2024-03-25T16:48:57.613875Z","description":"a + description","frontend_count":0,"id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","instances":[{"created_at":"2024-03-25T16:42:56.944256Z","id":"32a7bfc4-e7c1-4517-99f7-4abc715e6de4","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:02.704171Z","zone":"fr-par-1"}],"ip":[{"id":"c0593960-c703-4d1a-9599-22e0095c9d8f","ip_address":"195.154.73.129","lb_id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-73-129.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:03.900943Z","zone":"fr-par-1"},{"backend_count":0,"created_at":"2024-03-25T16:49:29.871610Z","description":"a + description","frontend_count":0,"id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","instances":[{"created_at":"2024-03-25T16:42:47.321779Z","id":"e5ff9196-3185-44a9-805d-9b4b616fc974","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:35.080606Z","zone":"fr-par-1"}],"ip":[{"id":"c5657896-d40d-407b-872b-29d43fff1ae3","ip_address":"195.154.72.7","lb_id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-72-7.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:36.219270Z","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "2254" + - "2327" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:50 GMT + - Mon, 25 Mar 2024 16:50:03 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1953,7 +2093,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9883f6b8-c118-48ff-b1dc-ce9d2c2906f1 + - 6df444f5-7f40-4974-8647-fa176e652b74 status: 200 OK code: 200 duration: "" @@ -1962,8 +2102,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane url: https://api.scaleway.com/lb/v1/zones/fr-par-2/lbs?name=tf-lb-datasource&order_by=created_at_asc method: GET response: @@ -1976,9 +2116,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:51 GMT + - Mon, 25 Mar 2024 16:50:03 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1986,7 +2126,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a200ca4-9435-4aed-9ac8-cacfb62717e0 + - ae85fa8a-3449-4c9d-8e93-27ea6fe7327a status: 200 OK code: 200 duration: "" @@ -1995,25 +2135,25 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs?name=tf-lb-datasource&order_by=created_at_asc method: GET response: - body: '{"lbs":[{"backend_count":0,"created_at":"2023-03-02T11:00:45.669727Z","description":"a - description","frontend_count":0,"id":"36c702ad-45ee-4583-9160-17097b90b232","instances":[{"created_at":"2023-03-02T10:47:36.985415Z","id":"d98447cf-067d-4305-85d7-6e2b37008af6","ip_address":"10.65.68.57","region":"fr-par","status":"ready","updated_at":"2023-03-02T11:00:46.243611Z","zone":"fr-par-1"}],"ip":[{"id":"cadc082d-dfcd-4d33-84ac-1bb92807d7b5","ip_address":"51.159.205.18","lb_id":"36c702ad-45ee-4583-9160-17097b90b232","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-18.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-03-02T11:00:47.458540Z","zone":"fr-par-1"},{"backend_count":0,"created_at":"2023-03-02T11:01:17.887169Z","description":"a - description","frontend_count":0,"id":"1352d01c-81c5-464e-a9ec-6857ea92162d","instances":[{"created_at":"2023-03-02T10:33:26.967697Z","id":"500adb56-e752-4fde-8467-d38d56716986","ip_address":"10.69.4.51","region":"fr-par","status":"ready","updated_at":"2023-03-02T11:01:18.577760Z","zone":"fr-par-1"}],"ip":[{"id":"cb1ee2e1-ce03-4dcf-a5fc-6270324320cf","ip_address":"51.159.26.98","lb_id":"1352d01c-81c5-464e-a9ec-6857ea92162d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-98.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-03-02T11:01:19.835275Z","zone":"fr-par-1"}],"total_count":2}' + body: '{"lbs":[{"backend_count":0,"created_at":"2024-03-25T16:48:57.613875Z","description":"a + description","frontend_count":0,"id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","instances":[{"created_at":"2024-03-25T16:42:56.944256Z","id":"32a7bfc4-e7c1-4517-99f7-4abc715e6de4","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:02.704171Z","zone":"fr-par-1"}],"ip":[{"id":"c0593960-c703-4d1a-9599-22e0095c9d8f","ip_address":"195.154.73.129","lb_id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-73-129.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:03.900943Z","zone":"fr-par-1"},{"backend_count":0,"created_at":"2024-03-25T16:49:29.871610Z","description":"a + description","frontend_count":0,"id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","instances":[{"created_at":"2024-03-25T16:42:47.321779Z","id":"e5ff9196-3185-44a9-805d-9b4b616fc974","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:35.080606Z","zone":"fr-par-1"}],"ip":[{"id":"c5657896-d40d-407b-872b-29d43fff1ae3","ip_address":"195.154.72.7","lb_id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-72-7.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:36.219270Z","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "2254" + - "2327" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:51 GMT + - Mon, 25 Mar 2024 16:50:03 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2021,7 +2161,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55c4f93b-25cd-40f6-8724-13b43f4adc0d + - f67938be-dd0b-4dbf-ac79-daa04b14f057 status: 200 OK code: 200 duration: "" @@ -2030,24 +2170,25 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/1352d01c-81c5-464e-a9ec-6857ea92162d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs?order_by=created_at_asc&tags=terraform-test&tags=data_scaleway_lbs method: GET response: - body: '{"backend_count":0,"created_at":"2023-03-02T11:01:17.887169Z","description":"a - description","frontend_count":0,"id":"1352d01c-81c5-464e-a9ec-6857ea92162d","instances":[{"created_at":"2023-03-02T10:33:26.967697Z","id":"500adb56-e752-4fde-8467-d38d56716986","ip_address":"10.69.4.51","region":"fr-par","status":"ready","updated_at":"2023-03-02T11:01:18.577760Z","zone":"fr-par-1"}],"ip":[{"id":"cb1ee2e1-ce03-4dcf-a5fc-6270324320cf","ip_address":"51.159.26.98","lb_id":"1352d01c-81c5-464e-a9ec-6857ea92162d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-98.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-03-02T11:01:19.835275Z","zone":"fr-par-1"}' + body: '{"lbs":[{"backend_count":0,"created_at":"2024-03-25T16:48:57.613875Z","description":"a + description","frontend_count":0,"id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","instances":[{"created_at":"2024-03-25T16:42:56.944256Z","id":"32a7bfc4-e7c1-4517-99f7-4abc715e6de4","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:02.704171Z","zone":"fr-par-1"}],"ip":[{"id":"c0593960-c703-4d1a-9599-22e0095c9d8f","ip_address":"195.154.73.129","lb_id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-73-129.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:03.900943Z","zone":"fr-par-1"},{"backend_count":0,"created_at":"2024-03-25T16:49:29.871610Z","description":"a + description","frontend_count":0,"id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","instances":[{"created_at":"2024-03-25T16:42:47.321779Z","id":"e5ff9196-3185-44a9-805d-9b4b616fc974","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:35.080606Z","zone":"fr-par-1"}],"ip":[{"id":"c5657896-d40d-407b-872b-29d43fff1ae3","ip_address":"195.154.72.7","lb_id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-72-7.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:36.219270Z","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "1111" + - "2327" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:51 GMT + - Mon, 25 Mar 2024 16:50:03 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2055,7 +2196,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 611c3759-082c-4d0c-987c-bcc8c941a569 + - ed0ac0f8-99bc-4fdc-abbd-290458d27bc9 status: 200 OK code: 200 duration: "" @@ -2064,24 +2205,24 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/36c702ad-45ee-4583-9160-17097b90b232 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/23d91fb9-bc6c-476d-9e6f-e0b37bbf714b method: GET response: - body: '{"backend_count":0,"created_at":"2023-03-02T11:00:45.669727Z","description":"a - description","frontend_count":0,"id":"36c702ad-45ee-4583-9160-17097b90b232","instances":[{"created_at":"2023-03-02T10:47:36.985415Z","id":"d98447cf-067d-4305-85d7-6e2b37008af6","ip_address":"10.65.68.57","region":"fr-par","status":"ready","updated_at":"2023-03-02T11:00:46.243611Z","zone":"fr-par-1"}],"ip":[{"id":"cadc082d-dfcd-4d33-84ac-1bb92807d7b5","ip_address":"51.159.205.18","lb_id":"36c702ad-45ee-4583-9160-17097b90b232","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-18.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-03-02T11:00:47.458540Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2024-03-25T16:49:29.871610Z","description":"a + description","frontend_count":0,"id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","instances":[{"created_at":"2024-03-25T16:42:47.321779Z","id":"e5ff9196-3185-44a9-805d-9b4b616fc974","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:35.080606Z","zone":"fr-par-1"}],"ip":[{"id":"c5657896-d40d-407b-872b-29d43fff1ae3","ip_address":"195.154.72.7","lb_id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-72-7.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:36.219270Z","zone":"fr-par-1"}' headers: Content-Length: - - "1114" + - "1147" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:51 GMT + - Mon, 25 Mar 2024 16:50:03 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2089,7 +2230,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd816fc2-8472-4e5d-9f2c-35138a7f0d61 + - d3ae7c4c-d464-47d9-8538-9fecd217b833 status: 200 OK code: 200 duration: "" @@ -2098,9 +2239,43 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/1352d01c-81c5-464e-a9ec-6857ea92162d?release_ip=false + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f + method: GET + response: + body: '{"backend_count":0,"created_at":"2024-03-25T16:48:57.613875Z","description":"a + description","frontend_count":0,"id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","instances":[{"created_at":"2024-03-25T16:42:56.944256Z","id":"32a7bfc4-e7c1-4517-99f7-4abc715e6de4","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:02.704171Z","zone":"fr-par-1"}],"ip":[{"id":"c0593960-c703-4d1a-9599-22e0095c9d8f","ip_address":"195.154.73.129","lb_id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-73-129.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:49:03.900943Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1151" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 25 Mar 2024 16:50:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 79eab9a3-650d-4302-bee5-9d145f3667a8 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/23d91fb9-bc6c-476d-9e6f-e0b37bbf714b?release_ip=false method: DELETE response: body: "" @@ -2110,9 +2285,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:51 GMT + - Mon, 25 Mar 2024 16:50:03 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2120,7 +2295,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08c25cb6-89c5-4480-96d7-9d303be0d9d2 + - d3fb3a9f-2a57-41f2-886e-98b3fdb765f8 status: 204 No Content code: 204 duration: "" @@ -2129,9 +2304,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/36c702ad-45ee-4583-9160-17097b90b232?release_ip=false + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f?release_ip=false method: DELETE response: body: "" @@ -2141,9 +2316,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:51 GMT + - Mon, 25 Mar 2024 16:50:03 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2151,7 +2326,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 654ffe14-5e80-41e3-85ec-30f19e66197e + - 40e6e571-f118-450f-947f-e297a4201262 status: 204 No Content code: 204 duration: "" @@ -2160,24 +2335,24 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/1352d01c-81c5-464e-a9ec-6857ea92162d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/23d91fb9-bc6c-476d-9e6f-e0b37bbf714b method: GET response: - body: '{"backend_count":0,"created_at":"2023-03-02T11:01:17.887169Z","description":"a - description","frontend_count":0,"id":"1352d01c-81c5-464e-a9ec-6857ea92162d","instances":[{"created_at":"2023-03-02T10:33:26.967697Z","id":"500adb56-e752-4fde-8467-d38d56716986","ip_address":"10.69.4.51","region":"fr-par","status":"ready","updated_at":"2023-03-02T11:01:18.577760Z","zone":"fr-par-1"}],"ip":[{"id":"cb1ee2e1-ce03-4dcf-a5fc-6270324320cf","ip_address":"51.159.26.98","lb_id":"1352d01c-81c5-464e-a9ec-6857ea92162d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-98.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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-03-02T11:01:51.653771Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2024-03-25T16:49:29.871610Z","description":"a + description","frontend_count":0,"id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","instances":[{"created_at":"2024-03-25T16:42:47.321779Z","id":"e5ff9196-3185-44a9-805d-9b4b616fc974","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:35.080606Z","zone":"fr-par-1"}],"ip":[{"id":"c5657896-d40d-407b-872b-29d43fff1ae3","ip_address":"195.154.72.7","lb_id":"23d91fb9-bc6c-476d-9e6f-e0b37bbf714b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-72-7.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource1","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:50:03.789870Z","zone":"fr-par-1"}' headers: Content-Length: - - "1115" + - "1151" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:51 GMT + - Mon, 25 Mar 2024 16:50:04 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2185,7 +2360,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c03955d-f861-4813-b1e4-c9ca01f10c28 + - 0ac2b4d1-eda4-4989-80a7-eda9d07101a1 status: 200 OK code: 200 duration: "" @@ -2194,24 +2369,24 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/36c702ad-45ee-4583-9160-17097b90b232 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f method: GET response: - body: '{"backend_count":0,"created_at":"2023-03-02T11:00:45.669727Z","description":"a - description","frontend_count":0,"id":"36c702ad-45ee-4583-9160-17097b90b232","instances":[{"created_at":"2023-03-02T10:47:36.985415Z","id":"d98447cf-067d-4305-85d7-6e2b37008af6","ip_address":"10.65.68.57","region":"fr-par","status":"ready","updated_at":"2023-03-02T11:00:46.243611Z","zone":"fr-par-1"}],"ip":[{"id":"cadc082d-dfcd-4d33-84ac-1bb92807d7b5","ip_address":"51.159.205.18","lb_id":"36c702ad-45ee-4583-9160-17097b90b232","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-18.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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-03-02T11:01:51.668765Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2024-03-25T16:48:57.613875Z","description":"a + description","frontend_count":0,"id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","instances":[{"created_at":"2024-03-25T16:42:56.944256Z","id":"32a7bfc4-e7c1-4517-99f7-4abc715e6de4","ip_address":"","region":"fr-par","status":"ready","updated_at":"2024-03-25T16:49:02.704171Z","zone":"fr-par-1"}],"ip":[{"id":"c0593960-c703-4d1a-9599-22e0095c9d8f","ip_address":"195.154.73.129","lb_id":"d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-73-129.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"tf-lb-datasource0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_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":["terraform-test","data_scaleway_lbs","basic"],"type":"lb-s","updated_at":"2024-03-25T16:50:03.790739Z","zone":"fr-par-1"}' headers: Content-Length: - - "1118" + - "1155" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:01:51 GMT + - Mon, 25 Mar 2024 16:50:04 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2219,7 +2394,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d39c036c-582d-45ed-a66f-67e028380c7c + - c04b50e1-0de4-4461-bdc0-1760332a7d91 status: 200 OK code: 200 duration: "" @@ -2228,9 +2403,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/1352d01c-81c5-464e-a9ec-6857ea92162d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/23d91fb9-bc6c-476d-9e6f-e0b37bbf714b method: GET response: body: '{"message":"lbs not Found"}' @@ -2242,9 +2417,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:02:22 GMT + - Mon, 25 Mar 2024 16:50:34 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2252,7 +2427,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92248434-b900-4887-84d6-407c7cce70c3 + - 7838a186-43a9-4de5-99a4-1e2180ef2883 status: 404 Not Found code: 404 duration: "" @@ -2261,9 +2436,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/36c702ad-45ee-4583-9160-17097b90b232 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f method: GET response: body: '{"message":"lbs not Found"}' @@ -2275,9 +2450,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:02:22 GMT + - Mon, 25 Mar 2024 16:50:34 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2285,7 +2460,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cbfd9c53-e734-4bb9-92ba-daac0a188f04 + - 9a7d4464-bd9d-41b2-90e3-5d324195fbe8 status: 404 Not Found code: 404 duration: "" @@ -2294,9 +2469,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/36c702ad-45ee-4583-9160-17097b90b232 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/23d91fb9-bc6c-476d-9e6f-e0b37bbf714b method: GET response: body: '{"message":"lbs not Found"}' @@ -2308,9 +2483,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:02:22 GMT + - Mon, 25 Mar 2024 16:50:34 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2318,7 +2493,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d2597c4-e186-49e3-b074-0a212ae3793d + - 80c680ba-f74c-401e-86bb-76979d6b8ca2 status: 404 Not Found code: 404 duration: "" @@ -2327,9 +2502,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/1352d01c-81c5-464e-a9ec-6857ea92162d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f method: GET response: body: '{"message":"lbs not Found"}' @@ -2341,9 +2516,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:02:22 GMT + - Mon, 25 Mar 2024 16:50:34 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2351,7 +2526,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 85424b6a-4d38-4aeb-86bf-ac820cada920 + - 1f3e5a2a-1a07-4d47-aacf-48eea9301244 status: 404 Not Found code: 404 duration: "" @@ -2360,23 +2535,23 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cadc082d-dfcd-4d33-84ac-1bb92807d7b5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c5657896-d40d-407b-872b-29d43fff1ae3 method: GET response: - body: '{"id":"cadc082d-dfcd-4d33-84ac-1bb92807d7b5","ip_address":"51.159.205.18","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-205-18.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"c5657896-d40d-407b-872b-29d43fff1ae3","ip_address":"195.154.72.7","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-72-7.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "285" + - "283" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:02:22 GMT + - Mon, 25 Mar 2024 16:50:34 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2384,7 +2559,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ddbaf18-bbc3-496d-b5b3-3e1b95294455 + - b89264fb-28d4-4830-ae0d-d72c6f59c881 status: 200 OK code: 200 duration: "" @@ -2393,23 +2568,23 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cb1ee2e1-ce03-4dcf-a5fc-6270324320cf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c0593960-c703-4d1a-9599-22e0095c9d8f method: GET response: - body: '{"id":"cb1ee2e1-ce03-4dcf-a5fc-6270324320cf","ip_address":"51.159.26.98","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-98.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"c0593960-c703-4d1a-9599-22e0095c9d8f","ip_address":"195.154.73.129","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"195-154-73-129.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "283" + - "287" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:02:22 GMT + - Mon, 25 Mar 2024 16:50:34 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2417,7 +2592,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f6f5887-5c79-4222-a24b-3682b4db6f14 + - 98c84acb-b604-45a6-90a7-044ddb934f79 status: 200 OK code: 200 duration: "" @@ -2426,9 +2601,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cadc082d-dfcd-4d33-84ac-1bb92807d7b5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c5657896-d40d-407b-872b-29d43fff1ae3 method: DELETE response: body: "" @@ -2438,9 +2613,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:02:22 GMT + - Mon, 25 Mar 2024 16:50:34 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2448,7 +2623,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b3cbb70-fd31-4920-85a6-c6bf07b08d83 + - 342f77a3-e78f-4413-b4d9-7bf6ea06069a status: 204 No Content code: 204 duration: "" @@ -2457,9 +2632,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cb1ee2e1-ce03-4dcf-a5fc-6270324320cf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/c0593960-c703-4d1a-9599-22e0095c9d8f method: DELETE response: body: "" @@ -2469,9 +2644,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:02:22 GMT + - Mon, 25 Mar 2024 16:50:34 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2479,7 +2654,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe6dccda-d5ff-45d5-88d6-7152dabfcd30 + - 3e192e78-70dc-4a06-9fc5-2e954d1a0f86 status: 204 No Content code: 204 duration: "" @@ -2488,9 +2663,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/36c702ad-45ee-4583-9160-17097b90b232 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/23d91fb9-bc6c-476d-9e6f-e0b37bbf714b method: GET response: body: '{"message":"lbs not Found"}' @@ -2502,9 +2677,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:02:22 GMT + - Mon, 25 Mar 2024 16:50:34 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2512,7 +2687,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cec0b213-8daa-46f4-a9e8-f47052fb1c31 + - 4a1404e5-9348-469f-a866-54a190855bbe status: 404 Not Found code: 404 duration: "" @@ -2521,9 +2696,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/1352d01c-81c5-464e-a9ec-6857ea92162d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.1; darwin; amd64) terraform-provider/develop + terraform/terraform-tests Crossplane + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d9e65ac7-5ce4-4e13-bd2c-a8fd2a1c729f method: GET response: body: '{"message":"lbs not Found"}' @@ -2535,9 +2710,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 02 Mar 2023 11:02:22 GMT + - Mon, 25 Mar 2024 16:50:34 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2545,7 +2720,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 45339940-4d0e-47a5-b31b-88b97e722f19 + - 3d282c6c-3689-4af3-9a78-4cf992b2c617 status: 404 Not Found code: 404 duration: ""