From 778d970acbbd0c2de3c196f3af4500212a434f6e Mon Sep 17 00:00:00 2001 From: Jonathan Remy Date: Tue, 22 Jul 2025 14:48:08 +0200 Subject: [PATCH 1/2] feat(mongodb): add tsl certificate --- docs/resources/mongodb_instance.md | 1 + internal/services/mongodb/instance.go | 21 + internal/services/mongodb/instance_test.go | 1 + .../mongo-db-instance-basic.cassette.yaml | 2528 +++++++++++++++-- 4 files changed, 2267 insertions(+), 284 deletions(-) diff --git a/docs/resources/mongodb_instance.md b/docs/resources/mongodb_instance.md index be3f070aa1..a4b550657e 100644 --- a/docs/resources/mongodb_instance.md +++ b/docs/resources/mongodb_instance.md @@ -126,6 +126,7 @@ In addition to all arguments above, the following attributes are exported: - `id` - The ID of the endpoint. - `port` - TCP port of the endpoint. - `dns_records` - List of DNS records for your endpoint. +- `tls_certificate` - The PEM-encoded TLS certificate for the MongoDB® instance, if available. ## Import diff --git a/internal/services/mongodb/instance.go b/internal/services/mongodb/instance.go index 99169f5c37..e95dab4097 100644 --- a/internal/services/mongodb/instance.go +++ b/internal/services/mongodb/instance.go @@ -1,9 +1,11 @@ package mongodb import ( + "bytes" "context" "errors" "fmt" + "io" "strings" "time" @@ -233,6 +235,11 @@ func ResourceInstance() *schema.Resource { // Common "region": regional.Schema(), "project_id": account.ProjectIDSchema(), + "tls_certificate": { + Type: schema.TypeString, + Computed: true, + Description: "PEM-encoded TLS certificate for MongoDB", + }, }, CustomizeDiff: customdiff.All( func(ctx context.Context, d *schema.ResourceDiff, meta any) error { @@ -460,6 +467,20 @@ func ResourceInstanceRead(ctx context.Context, d *schema.ResourceData, m any) di _ = d.Set("settings", map[string]string{}) + cert, err := mongodbAPI.GetInstanceCertificate(&mongodb.GetInstanceCertificateRequest{ + Region: region, + InstanceID: ID, + }, scw.WithContext(ctx)) + + var buf bytes.Buffer + + if err == nil && cert != nil { + _, copyErr := io.Copy(&buf, cert.Content) + if copyErr == nil { + _ = d.Set("tls_certificate", buf.String()) + } + } + return diags } diff --git a/internal/services/mongodb/instance_test.go b/internal/services/mongodb/instance_test.go index fc764ce8a2..46729bda4f 100644 --- a/internal/services/mongodb/instance_test.go +++ b/internal/services/mongodb/instance_test.go @@ -41,6 +41,7 @@ func TestAccMongoDBInstance_Basic(t *testing.T) { resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "node_number", "1"), resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "user_name", "my_initial_user"), resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "password", "thiZ_is_v&ry_s3cret"), + resource.TestCheckResourceAttrSet("scaleway_mongodb_instance.main", "tls_certificate"), ), }, }, diff --git a/internal/services/mongodb/testdata/mongo-db-instance-basic.cassette.yaml b/internal/services/mongodb/testdata/mongo-db-instance-basic.cassette.yaml index 213da3e15d..66032d16dd 100644 --- a/internal/services/mongodb/testdata/mongo-db-instance-basic.cassette.yaml +++ b/internal/services/mongodb/testdata/mongo-db-instance-basic.cassette.yaml @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -38,9 +38,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:52:57 GMT + - Tue, 22 Jul 2025 08:39:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 902fae5d-ffd6-4657-8ba6-85e509602084 + - 6312c71c-88b3-411c-ba63-b01ac46f4703 status: 200 OK code: 200 - duration: 711.325584ms + duration: 535.29575ms - id: 1 request: proto: HTTP/1.1 @@ -68,7 +68,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -78,7 +78,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -87,9 +87,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:52:57 GMT + - Tue, 22 Jul 2025 08:39:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63c52326-9a42-4b63-9807-e4498b8b86c5 + - 0f08dcc0-59b0-4e40-98d1-a26be2152fa2 status: 200 OK code: 200 - duration: 110.23125ms + duration: 129.578375ms - id: 2 request: proto: HTTP/1.1 @@ -117,7 +117,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -127,7 +127,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -136,9 +136,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:53:08 GMT + - Tue, 22 Jul 2025 08:39:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d034969-b734-460a-9fe3-87d2333b1381 + - ffe1d5f8-8c62-429c-b17a-fceeb676cff4 status: 200 OK code: 200 - duration: 104.066875ms + duration: 189.254334ms - id: 3 request: proto: HTTP/1.1 @@ -166,7 +166,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -176,7 +176,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -185,9 +185,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:53:18 GMT + - Tue, 22 Jul 2025 08:39:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86cf6c5a-3666-4410-9751-f8ddec066b4b + - defdec91-56f2-4b4c-8578-d29eca8ef6da status: 200 OK code: 200 - duration: 108.371042ms + duration: 85.243667ms - id: 4 request: proto: HTTP/1.1 @@ -215,7 +215,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -225,7 +225,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -234,9 +234,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:53:28 GMT + - Tue, 22 Jul 2025 08:39:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aab57e24-f1e7-40f7-8cdc-14095c206e59 + - 8a7040db-e354-45f7-8954-98ed82706479 status: 200 OK code: 200 - duration: 320.250667ms + duration: 108.674084ms - id: 5 request: proto: HTTP/1.1 @@ -264,7 +264,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -274,7 +274,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -283,9 +283,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:53:38 GMT + - Tue, 22 Jul 2025 08:39:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70f0c538-ab0a-493d-86ec-b9bed9c89abc + - 69155ed8-fb48-46d0-871a-7ac74dd9c0e0 status: 200 OK code: 200 - duration: 111.692791ms + duration: 89.388583ms - id: 6 request: proto: HTTP/1.1 @@ -313,7 +313,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -323,7 +323,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -332,9 +332,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:53:48 GMT + - Tue, 22 Jul 2025 08:40:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -342,10 +342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 959bc369-d509-4f47-8efb-c92f5df8a473 + - 7d022c4c-a9e8-4f4b-ace4-8181b24ad255 status: 200 OK code: 200 - duration: 87.691917ms + duration: 113.951958ms - id: 7 request: proto: HTTP/1.1 @@ -362,7 +362,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -372,7 +372,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -381,9 +381,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:53:58 GMT + - Tue, 22 Jul 2025 08:40:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -391,10 +391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f81eaefe-0086-4e84-9ffe-c1d87adf36e5 + - dc1f12f9-e4ed-44bb-842a-cfbe9a689b96 status: 200 OK code: 200 - duration: 179.198667ms + duration: 109.662166ms - id: 8 request: proto: HTTP/1.1 @@ -411,7 +411,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -421,7 +421,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -430,9 +430,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:54:08 GMT + - Tue, 22 Jul 2025 08:40:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -440,10 +440,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4761fa1a-620d-41fb-ba1c-9b1e936f012f + - b30cc0e2-55df-4c19-af4b-9402630d0d19 status: 200 OK code: 200 - duration: 97.856667ms + duration: 90.377833ms - id: 9 request: proto: HTTP/1.1 @@ -460,7 +460,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -470,7 +470,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -479,9 +479,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:54:19 GMT + - Tue, 22 Jul 2025 08:40:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -489,10 +489,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17795a12-2058-46cb-8ed6-208e817d59ee + - d451f9cb-27e4-46f8-ae85-86adac0fe35f status: 200 OK code: 200 - duration: 79.541709ms + duration: 90.099042ms - id: 10 request: proto: HTTP/1.1 @@ -509,7 +509,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -519,7 +519,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -528,9 +528,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:54:29 GMT + - Tue, 22 Jul 2025 08:40:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -538,10 +538,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a55027f-3f5a-4ee6-976f-92b75b8ee9d8 + - 4106cc86-7050-4ad4-afb5-cc881a8cb17f status: 200 OK code: 200 - duration: 116.767833ms + duration: 157.580083ms - id: 11 request: proto: HTTP/1.1 @@ -558,7 +558,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -568,7 +568,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -577,9 +577,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:54:39 GMT + - Tue, 22 Jul 2025 08:40:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -587,10 +587,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93a568ac-0cd8-49f9-a425-514e2643fbc7 + - 16bd75cb-42ea-4052-a518-ca891db9362e status: 200 OK code: 200 - duration: 95.063625ms + duration: 417.485917ms - id: 12 request: proto: HTTP/1.1 @@ -607,7 +607,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -617,7 +617,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -626,9 +626,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:54:49 GMT + - Tue, 22 Jul 2025 08:41:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -636,10 +636,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 308f24c4-5a00-4295-9448-6ea279883ea1 + - c56b1ee9-d232-4820-908f-87ffe5b5a54e status: 200 OK code: 200 - duration: 97.402833ms + duration: 114.479458ms - id: 13 request: proto: HTTP/1.1 @@ -656,7 +656,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -666,7 +666,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -675,9 +675,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:54:59 GMT + - Tue, 22 Jul 2025 08:41:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -685,10 +685,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06866197-2c2f-441b-86db-42c1f74ae24f + - 12120d8d-c9c3-4194-9f21-8dceabb1da23 status: 200 OK code: 200 - duration: 105.7535ms + duration: 110.984875ms - id: 14 request: proto: HTTP/1.1 @@ -705,7 +705,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -715,7 +715,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -724,9 +724,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:55:09 GMT + - Tue, 22 Jul 2025 08:41:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -734,10 +734,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c796a247-057f-411c-879c-e37d4f5c6f4b + - 46b32352-71d5-4f04-8c29-d4ea478836d6 status: 200 OK code: 200 - duration: 100.602042ms + duration: 98.665959ms - id: 15 request: proto: HTTP/1.1 @@ -754,7 +754,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -764,7 +764,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -773,9 +773,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:55:19 GMT + - Tue, 22 Jul 2025 08:41:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -783,10 +783,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01753e5a-ce8f-41be-a29b-14d512ac6e96 + - cb1f2e49-f2d3-4d4e-8030-a3828b6df57f status: 200 OK code: 200 - duration: 100.366292ms + duration: 216.696ms - id: 16 request: proto: HTTP/1.1 @@ -803,7 +803,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -813,7 +813,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -822,9 +822,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:55:29 GMT + - Tue, 22 Jul 2025 08:41:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -832,10 +832,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c1485c5-9c64-4917-a96f-82a6c24e7c79 + - 5d51e19c-21d6-4fbb-8872-9937a7b9a60a status: 200 OK code: 200 - duration: 275.493042ms + duration: 103.074917ms - id: 17 request: proto: HTTP/1.1 @@ -852,7 +852,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -862,7 +862,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -871,9 +871,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:55:40 GMT + - Tue, 22 Jul 2025 08:41:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -881,10 +881,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 499c2815-2482-4472-ab96-285e4705321c + - a998617c-1fd1-4e4b-a663-d3b89212bdb9 status: 200 OK code: 200 - duration: 133.569208ms + duration: 87.459458ms - id: 18 request: proto: HTTP/1.1 @@ -901,7 +901,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -911,7 +911,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -920,9 +920,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:55:50 GMT + - Tue, 22 Jul 2025 08:42:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -930,10 +930,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b9f64c0-9b1d-4dd6-9ad5-6e81eacd4ec2 + - 9ddad56e-df0c-4b65-b4c9-e6c723fded16 status: 200 OK code: 200 - duration: 89.988625ms + duration: 225.587125ms - id: 19 request: proto: HTTP/1.1 @@ -950,7 +950,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -960,7 +960,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -969,9 +969,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:56:00 GMT + - Tue, 22 Jul 2025 08:42:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -979,10 +979,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a116d568-9f3f-4b32-8296-83087c101ef0 + - 8f633c75-a3dc-40ed-99c7-d45d6414e055 status: 200 OK code: 200 - duration: 103.886ms + duration: 95.902917ms - id: 20 request: proto: HTTP/1.1 @@ -999,7 +999,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -1009,7 +1009,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -1018,9 +1018,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:56:10 GMT + - Tue, 22 Jul 2025 08:42:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1028,10 +1028,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea8624fb-5f90-4509-8296-8190361b16c9 + - aeda3846-7e76-47df-9de2-e53a2d1696d0 status: 200 OK code: 200 - duration: 89.460042ms + duration: 84.536166ms - id: 21 request: proto: HTTP/1.1 @@ -1048,7 +1048,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -1058,7 +1058,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -1067,9 +1067,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:56:20 GMT + - Tue, 22 Jul 2025 08:42:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1077,10 +1077,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81c133f4-0fc3-4daf-bc2f-7e4d17d97b61 + - 4b69cae7-c356-43bd-bdbd-7e376b0f666d status: 200 OK code: 200 - duration: 97.352042ms + duration: 92.222958ms - id: 22 request: proto: HTTP/1.1 @@ -1097,7 +1097,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -1107,7 +1107,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -1116,9 +1116,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:56:30 GMT + - Tue, 22 Jul 2025 08:42:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1126,10 +1126,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7e9ba9e-623f-4d40-8bea-eac19f48745f + - d3bc33e1-0e79-487d-8a7d-76579ec1adaf status: 200 OK code: 200 - duration: 114.847583ms + duration: 104.293875ms - id: 23 request: proto: HTTP/1.1 @@ -1146,7 +1146,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -1156,7 +1156,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -1165,9 +1165,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:56:40 GMT + - Tue, 22 Jul 2025 08:42:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1175,10 +1175,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4123747f-ddd5-4914-8700-bad3416e5e80 + - 623d9b24-cfc8-4a33-815f-c2bee2ce16ad status: 200 OK code: 200 - duration: 126.134083ms + duration: 222.148709ms - id: 24 request: proto: HTTP/1.1 @@ -1195,7 +1195,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -1205,7 +1205,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -1214,9 +1214,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:56:50 GMT + - Tue, 22 Jul 2025 08:43:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1224,10 +1224,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff27c5cb-7a7b-4827-b0df-362f640e7e7f + - 57556a15-2b25-433b-a1ca-84c8e0344989 status: 200 OK code: 200 - duration: 156.486291ms + duration: 96.502708ms - id: 25 request: proto: HTTP/1.1 @@ -1244,7 +1244,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -1254,7 +1254,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -1263,9 +1263,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:57:01 GMT + - Tue, 22 Jul 2025 08:43:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1273,10 +1273,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2314fa39-4b66-4d53-a091-dd1858b4055c + - 856433ab-19dd-4366-a0a4-0cd0001a9be3 status: 200 OK code: 200 - duration: 124.657625ms + duration: 108.97525ms - id: 26 request: proto: HTTP/1.1 @@ -1293,7 +1293,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -1303,7 +1303,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -1312,9 +1312,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:57:11 GMT + - Tue, 22 Jul 2025 08:43:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1322,10 +1322,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed1c0922-f939-4cf1-b995-fac40f6a5d7f + - 5a1e2021-f458-4e58-ada1-83eec7ddd038 status: 200 OK code: 200 - duration: 95.025542ms + duration: 97.410542ms - id: 27 request: proto: HTTP/1.1 @@ -1342,7 +1342,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -1352,7 +1352,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -1361,9 +1361,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:57:21 GMT + - Tue, 22 Jul 2025 08:43:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1371,10 +1371,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3bb029fc-c582-4dfc-a061-8ef23caeae91 + - 049aaa64-1982-4f8e-8453-443859001a45 status: 200 OK code: 200 - duration: 100.160125ms + duration: 154.047375ms - id: 28 request: proto: HTTP/1.1 @@ -1391,7 +1391,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -1401,7 +1401,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -1410,9 +1410,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:57:31 GMT + - Tue, 22 Jul 2025 08:43:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1420,10 +1420,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5cad252a-b573-44df-8ac7-35e8185b3e71 + - c3950b59-65ff-4639-9bc4-b671f59c18ad status: 200 OK code: 200 - duration: 97.363709ms + duration: 92.147209ms - id: 29 request: proto: HTTP/1.1 @@ -1440,7 +1440,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -1450,7 +1450,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -1459,9 +1459,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:57:41 GMT + - Tue, 22 Jul 2025 08:43:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1469,10 +1469,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a1bce34-86a0-417c-b450-284c1a18c79c + - f1522143-4f0d-49e2-961b-001cc5f49439 status: 200 OK code: 200 - duration: 85.153709ms + duration: 86.157ms - id: 30 request: proto: HTTP/1.1 @@ -1489,7 +1489,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -1499,7 +1499,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -1508,9 +1508,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:57:51 GMT + - Tue, 22 Jul 2025 08:44:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1518,10 +1518,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c6f7ac2-8f0c-407b-8e1d-0b5d08030188 + - 09581b58-ea0e-445a-861b-7b503283c74b status: 200 OK code: 200 - duration: 100.188417ms + duration: 286.439833ms - id: 31 request: proto: HTTP/1.1 @@ -1538,7 +1538,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -1548,7 +1548,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -1557,9 +1557,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:58:01 GMT + - Tue, 22 Jul 2025 08:44:15 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1567,10 +1567,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 235c6e75-db07-4bdf-af21-f4bda3644b19 + - e2894952-0210-424d-90c4-a565e447a83a status: 200 OK code: 200 - duration: 197.705084ms + duration: 87.460959ms - id: 32 request: proto: HTTP/1.1 @@ -1587,7 +1587,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -1597,7 +1597,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -1606,9 +1606,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:58:11 GMT + - Tue, 22 Jul 2025 08:44:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1616,10 +1616,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34e6c3d4-677c-4b59-9cdb-5b0b154b02fd + - 339ee168-c6da-4550-96fa-f723fa5a6740 status: 200 OK code: 200 - duration: 108.733208ms + duration: 92.934083ms - id: 33 request: proto: HTTP/1.1 @@ -1636,7 +1636,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -1646,7 +1646,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -1655,9 +1655,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:58:21 GMT + - Tue, 22 Jul 2025 08:44:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1665,10 +1665,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9cf7a25c-6a06-4824-be4f-a69e03bb677c + - 8a7fd2e7-8bb5-4cc0-9d44-81db6068278b status: 200 OK code: 200 - duration: 95.3565ms + duration: 84.93275ms - id: 34 request: proto: HTTP/1.1 @@ -1685,7 +1685,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -1695,7 +1695,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -1704,9 +1704,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:58:32 GMT + - Tue, 22 Jul 2025 08:44:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1714,10 +1714,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e5717dc-8f80-4253-992f-ee46f51e79a9 + - 8a3ebd3f-00a2-4c5b-a231-3da624d0c51c status: 200 OK code: 200 - duration: 100.806166ms + duration: 85.596334ms - id: 35 request: proto: HTTP/1.1 @@ -1734,7 +1734,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -1744,7 +1744,7 @@ interactions: trailer: {} content_length: 682 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "682" @@ -1753,9 +1753,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:58:42 GMT + - Tue, 22 Jul 2025 08:44:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1763,10 +1763,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec25c72b-6751-414f-a006-d6eb27d14712 + - 5d723a29-4581-4aa0-ae7b-837a0be442fd status: 200 OK code: 200 - duration: 111.198666ms + duration: 144.503709ms - id: 36 request: proto: HTTP/1.1 @@ -1783,7 +1783,1820 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 682 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "682" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:45:06 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 801f59db-a73f-46d9-872e-a00ddb5b9f52 + status: 200 OK + code: 200 + duration: 100.323375ms + - id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 682 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "682" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:45:16 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f1a0fe93-d079-4a41-910a-b6e26442202b + status: 200 OK + code: 200 + duration: 99.34025ms + - id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 682 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "682" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:45:26 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 49ae470b-748e-4c39-892a-c66832d950ef + status: 200 OK + code: 200 + duration: 90.759167ms + - id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 682 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "682" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:45:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0b28f1cd-1724-4224-ac4f-26c1ae80f907 + status: 200 OK + code: 200 + duration: 91.893375ms + - id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 682 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "682" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:45:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7fd6e843-1d43-4f08-a1dd-9a1d6cefb851 + status: 200 OK + code: 200 + duration: 98.203125ms + - id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 682 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "682" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:45:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 86defcdf-a2d2-40a6-b99a-eeb59c5649e7 + status: 200 OK + code: 200 + duration: 84.398417ms + - id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 682 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "682" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:46:06 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 27d57c9e-7e58-464a-bc67-16b1e4dc2c53 + status: 200 OK + code: 200 + duration: 157.964084ms + - id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 682 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "682" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:46:16 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b260433c-9af8-4f84-ad63-b15a6da9f1c3 + status: 200 OK + code: 200 + duration: 242.8515ms + - id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 682 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "682" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:46:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1b05213c-a00e-4994-a34a-e1ee7bc7e6be + status: 200 OK + code: 200 + duration: 88.133875ms + - id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 682 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "682" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:46:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 567ba47c-2336-43b5-9ff8-89da9488f881 + status: 200 OK + code: 200 + duration: 115.0035ms + - id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 682 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "682" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:46:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b6c36d5b-5d65-4a71-bc44-dacba2c64be0 + status: 200 OK + code: 200 + duration: 82.697334ms + - id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 682 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "682" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:46:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d58cf578-8d58-45da-9fa2-13fcf6132578 + status: 200 OK + code: 200 + duration: 456.8525ms + - id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 682 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "682" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:47:07 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2fa657a3-af99-4096-afa5-acd4b4002dc8 + status: 200 OK + code: 200 + duration: 90.296166ms + - id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 682 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "682" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:47:17 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d9f9dc2f-e925-462f-a3b6-6fb6cfccfa0c + status: 200 OK + code: 200 + duration: 99.739042ms + - id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 682 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "682" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:47:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7fac6c10-5edd-429c-bcc8-015051102dcd + status: 200 OK + code: 200 + duration: 92.486084ms + - id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 682 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "682" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:47:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2a7d1dac-8ad4-4beb-99d4-ab8f74f61bbc + status: 200 OK + code: 200 + duration: 97.175375ms + - id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 682 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "682" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:47:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1802d0fe-96fa-4652-bb23-8fb5929a6472 + status: 200 OK + code: 200 + duration: 122.26075ms + - id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 682 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "682" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:47:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 19bf10e0-d05a-4c87-aaa1-c534adaee45b + status: 200 OK + code: 200 + duration: 184.004583ms + - id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 682 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "682" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:48:08 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 401fd3a7-b17e-444f-b594-d30128824611 + status: 200 OK + code: 200 + duration: 100.450083ms + - id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 682 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "682" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:48:18 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 277ace62-8f14-4064-a7f7-dbb88e8e4a1c + status: 200 OK + code: 200 + duration: 96.806708ms + - id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 682 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "682" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:48:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c2b97298-d924-4b8e-89d0-01b9555cab3c + status: 200 OK + code: 200 + duration: 270.562375ms + - id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 682 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "682" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:48:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3cae5c5d-0f2b-4785-949d-f9be3fb9adab + status: 200 OK + code: 200 + duration: 195.197666ms + - id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 682 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "682" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:48:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 98a6c5ad-0e8e-4da5-b029-6011f860ea72 + status: 200 OK + code: 200 + duration: 110.358458ms + - id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 682 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "682" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:48:59 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 10007ec0-e2b1-4426-8d54-003fe71bca71 + status: 200 OK + code: 200 + duration: 89.030375ms + - id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 682 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "682" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:49:09 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 53f536ed-d96a-4b80-812d-bfa28f518012 + status: 200 OK + code: 200 + duration: 185.015208ms + - id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 682 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "682" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:49:19 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fef435c7-e2a0-4282-a7c0-2bda35267709 + status: 200 OK + code: 200 + duration: 156.152375ms + - id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 682 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "682" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:49:29 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a5f2d1dd-e4ec-40ef-b623-ca9f35c02b31 + status: 200 OK + code: 200 + duration: 196.159041ms + - id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 682 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "682" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:49:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c7398686-f5a6-4fae-86f9-e7caf106bfc4 + status: 200 OK + code: 200 + duration: 120.075459ms + - id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 682 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "682" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:49:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fed774cb-01d0-41fc-b097-51ec305e39ea + status: 200 OK + code: 200 + duration: 230.330958ms + - id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 682 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "682" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:50:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cbda17df-3cab-4ee1-a995-b43dfa04691d + status: 200 OK + code: 200 + duration: 110.525208ms + - id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 682 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "682" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:50:10 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d19cb5f7-87a6-4fec-9aa3-3b6669cc2d1e + status: 200 OK + code: 200 + duration: 100.551959ms + - id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 682 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "682" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:50:20 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1f0f3ff9-65b3-4ec3-a92c-1b0a51265100 + status: 200 OK + code: 200 + duration: 75.332834ms + - id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 682 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "682" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:50:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9e3c2f75-0209-42c4-a640-87c906d9d7cb + status: 200 OK + code: 200 + duration: 98.393583ms + - id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 682 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "682" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:50:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 146ebfe1-e031-4f7e-80bf-41d8f46c9dd5 + status: 200 OK + code: 200 + duration: 223.149333ms + - id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 682 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "682" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:50:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3909d755-de06-4262-b584-e92f953fa40a + status: 200 OK + code: 200 + duration: 90.891375ms + - id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 682 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "682" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:51:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 686396b6-cfbc-4044-a165-f10ad321ce05 + status: 200 OK + code: 200 + duration: 90.624375ms + - id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 682 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"provisioning","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "682" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:51:11 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a35a8119-335a-423c-a702-976a287966b4 + status: 200 OK + code: 200 + duration: 89.230708ms + - id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -1793,7 +3606,7 @@ interactions: trailer: {} content_length: 675 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "675" @@ -1802,9 +3615,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:58:52 GMT + - Tue, 22 Jul 2025 08:51:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1812,11 +3625,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4c351b8-7ed1-4bd5-9bc7-f5500d07aa14 + - 62e8d475-bf02-4303-ae79-8bba8b469e02 status: 200 OK code: 200 - duration: 111.491791ms - - id: 37 + duration: 200.060333ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -1832,7 +3645,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -1842,7 +3655,7 @@ interactions: trailer: {} content_length: 675 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "675" @@ -1851,9 +3664,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:58:52 GMT + - Tue, 22 Jul 2025 08:51:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1861,11 +3674,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50aaa78d-3e32-4954-9d74-ebe81ed13276 + - 1175553b-e0bb-45fd-8daf-d031e7ea19ce status: 200 OK code: 200 - duration: 28.720083ms - - id: 38 + duration: 112.077458ms + - id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745/certificate + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1085 + uncompressed: false + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNBRENDQWJLZ0F3SUJBZ0lSQU14N2tHUnh5RVNXQ0N1RlVrR2FLcHd3QlFZREsyVndNSEF4Q3pBSkJnTlYKQkFZVEFrWlNNUTR3REFZRFZRUUhFd1ZRWVhKcGN6RVpNQmNHQTFVRUNoTVFVMk5oYkdWM1lYa2dUVzl1WjI5RQpRakUyTURRR0ExVUVDeE10U1c1emRHRnVZMlVnWWpjMFpEZ3laVGd0TURNNU55MDBZV013TFdFMk1URXRabVl4Ck5ESTBOMlpsTnpRMU1CNFhEVEkxTURjeU1qQTRNemt4TVZvWERUTTFNRGN5TURBNE16a3hNVm93Y0RFTE1Ba0cKQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWNUQlZCaGNtbHpNUmt3RndZRFZRUUtFeEJUWTJGc1pYZGhlU0JOYjI1bgpiMFJDTVRZd05BWURWUVFMRXkxSmJuTjBZVzVqWlNCaU56UmtPREpsT0Mwd016azNMVFJoWXpBdFlUWXhNUzFtClpqRTBNalEzWm1VM05EVXdLakFGQmdNclpYQURJUUJrYXk4YlVKOTVZNGdQUXg4bEtGcGpnYVNveWtrRjVMaDIKSERsT3Z5YlVtNk5oTUY4d0RnWURWUjBQQVFIL0JBUURBZ0lFTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQwpCZ2dyQmdFRkJRY0RBVEFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZERnUVdCQlF5QnFVcVhVandLelFwCnlnSGJtQ21nTmZJRWxEQUZCZ01yWlhBRFFRQytvcmlEd3BYTVc1Y2VNRE9FQ2p2cW9ZenQ1N1AxcVM3N1BOTTQKYWdnZnIrcjZXWlJhMUxHWVRWNjlhZXRPV3lQMWNGVWZDaXNWRS9NNmpxV2tZb3NMCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' + headers: + Content-Length: + - "1085" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:51:21 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a3163094-eb3a-41de-a0b9-b323586de171 + status: 200 OK + code: 200 + duration: 28.532583ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -1881,7 +3743,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -1891,7 +3753,7 @@ interactions: trailer: {} content_length: 675 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "675" @@ -1900,9 +3762,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:58:52 GMT + - Tue, 22 Jul 2025 08:51:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1910,11 +3772,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 013bf834-bccb-4b6f-945e-0b25bbcd21b5 + - 269118d4-2e84-4af8-a5c8-526cf5e03a89 status: 200 OK code: 200 - duration: 79.436916ms - - id: 39 + duration: 31.7095ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -1930,7 +3792,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -1940,7 +3802,7 @@ interactions: trailer: {} content_length: 675 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "675" @@ -1949,9 +3811,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:58:53 GMT + - Tue, 22 Jul 2025 08:51:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1959,11 +3821,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11373fd6-86de-4300-917a-0babd4629fb9 + - b2a19d81-580d-41d0-96f1-23089d8ae204 status: 200 OK code: 200 - duration: 89.511709ms - - id: 40 + duration: 205.9975ms + - id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745/certificate + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1085 + uncompressed: false + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNBRENDQWJLZ0F3SUJBZ0lSQU14N2tHUnh5RVNXQ0N1RlVrR2FLcHd3QlFZREsyVndNSEF4Q3pBSkJnTlYKQkFZVEFrWlNNUTR3REFZRFZRUUhFd1ZRWVhKcGN6RVpNQmNHQTFVRUNoTVFVMk5oYkdWM1lYa2dUVzl1WjI5RQpRakUyTURRR0ExVUVDeE10U1c1emRHRnVZMlVnWWpjMFpEZ3laVGd0TURNNU55MDBZV013TFdFMk1URXRabVl4Ck5ESTBOMlpsTnpRMU1CNFhEVEkxTURjeU1qQTRNemt4TVZvWERUTTFNRGN5TURBNE16a3hNVm93Y0RFTE1Ba0cKQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWNUQlZCaGNtbHpNUmt3RndZRFZRUUtFeEJUWTJGc1pYZGhlU0JOYjI1bgpiMFJDTVRZd05BWURWUVFMRXkxSmJuTjBZVzVqWlNCaU56UmtPREpsT0Mwd016azNMVFJoWXpBdFlUWXhNUzFtClpqRTBNalEzWm1VM05EVXdLakFGQmdNclpYQURJUUJrYXk4YlVKOTVZNGdQUXg4bEtGcGpnYVNveWtrRjVMaDIKSERsT3Z5YlVtNk5oTUY4d0RnWURWUjBQQVFIL0JBUURBZ0lFTUIwR0ExVWRKUVFXTUJRR0NDc0dBUVVGQndNQwpCZ2dyQmdFRkJRY0RBVEFQQmdOVkhSTUJBZjhFQlRBREFRSC9NQjBHQTFVZERnUVdCQlF5QnFVcVhVandLelFwCnlnSGJtQ21nTmZJRWxEQUZCZ01yWlhBRFFRQytvcmlEd3BYTVc1Y2VNRE9FQ2p2cW9ZenQ1N1AxcVM3N1BOTTQKYWdnZnIrcjZXWlJhMUxHWVRWNjlhZXRPV3lQMWNGVWZDaXNWRS9NNmpxV2tZb3NMCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' + headers: + Content-Length: + - "1085" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:51:22 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8bac1572-e0e0-4f5f-a0c4-c1b10ba0a94d + status: 200 OK + code: 200 + duration: 92.273167ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -1979,7 +3890,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -1989,7 +3900,7 @@ interactions: trailer: {} content_length: 675 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"ready","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "675" @@ -1998,9 +3909,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:58:54 GMT + - Tue, 22 Jul 2025 08:51:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2008,11 +3919,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef50967e-6e7f-4c4f-b500-37e28178ec24 + - 78803613-5583-4c16-a3e2-4fb15bee04e5 status: 200 OK code: 200 - duration: 182.90225ms - - id: 41 + duration: 35.752625ms + - id: 80 request: proto: HTTP/1.1 proto_major: 1 @@ -2028,7 +3939,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: DELETE response: proto: HTTP/2.0 @@ -2038,7 +3949,7 @@ interactions: trailer: {} content_length: 561 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":null,"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":null,"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "561" @@ -2047,9 +3958,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:58:54 GMT + - Tue, 22 Jul 2025 08:51:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2057,11 +3968,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cef6b4a4-9ddc-4a60-9350-1137b21f3495 + - 29f6f8af-2bf5-4d08-8bf1-c73bf969acfd status: 200 OK code: 200 - duration: 175.712667ms - - id: 42 + duration: 189.615417ms + - id: 81 request: proto: HTTP/1.1 proto_major: 1 @@ -2077,7 +3988,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -2087,7 +3998,7 @@ interactions: trailer: {} content_length: 678 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "678" @@ -2096,9 +4007,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:58:54 GMT + - Tue, 22 Jul 2025 08:51:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2106,11 +4017,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 850a94d2-4190-4fc8-859b-037dae227d69 + - d845678d-02d8-448e-9ea5-81c51f1b9bfc status: 200 OK code: 200 - duration: 30.834167ms - - id: 43 + duration: 88.341ms + - id: 82 request: proto: HTTP/1.1 proto_major: 1 @@ -2126,7 +4037,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -2136,7 +4047,7 @@ interactions: trailer: {} content_length: 678 uncompressed: false - body: '{"created_at":"2025-07-21T09:52:57.308367Z","endpoints":[{"dns_record":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c.mgdb.fr-par.scw.cloud","id":"1dd24fdd-2f3e-45c2-bd04-c6485943107e","port":27017,"public_network":{}}],"id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-21T09:52:57.754343Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "678" @@ -2145,9 +4056,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:59:04 GMT + - Tue, 22 Jul 2025 08:51:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2155,11 +4066,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0de8777-fdaa-4b09-ad31-a0b968b98066 + - f9b859fa-1271-4e71-98f7-1a3cefc256ad status: 200 OK code: 200 - duration: 110.977041ms - - id: 44 + duration: 90.207583ms + - id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 678 + uncompressed: false + body: '{"created_at":"2025-07-22T08:39:11.118820Z","endpoints":[{"dns_record":"b74d82e8-0397-4ac0-a611-ff14247fe745.mgdb.fr-par.scw.cloud","id":"924a12b4-d535-4cc6-b67d-9fba7a473075","port":27017,"public_network":{}}],"id":"b74d82e8-0397-4ac0-a611-ff14247fe745","name":"test-mongodb-basic-1","node_amount":1,"node_type":"mgdb-play2-nano","organization_id":"","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","snapshot_schedule":{"enabled":false,"frequency_hours":24,"last_run":null,"next_update":"2025-07-22T08:39:11.222628Z","retention_days":7},"status":"deleting","tags":[],"version":"7.0","volume":{"size_bytes":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "678" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 22 Jul 2025 08:51:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 973553c3-931e-43d2-9ed3-73067739f5f7 + status: 200 OK + code: 200 + duration: 126.7525ms + - id: 84 request: proto: HTTP/1.1 proto_major: 1 @@ -2175,7 +4135,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -2185,7 +4145,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"b74d82e8-0397-4ac0-a611-ff14247fe745","type":"not_found"}' headers: Content-Length: - "129" @@ -2194,9 +4154,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:59:14 GMT + - Tue, 22 Jul 2025 08:51:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2204,11 +4164,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77ff60f8-8cb9-40f0-a3eb-9e68cb8b92f2 + - e864acdf-cb45-4660-a144-f692f9742931 status: 404 Not Found code: 404 - duration: 21.945666ms - - id: 45 + duration: 37.298208ms + - id: 85 request: proto: HTTP/1.1 proto_major: 1 @@ -2224,7 +4184,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/c992ad39-0bb5-4538-9eb1-3c3ae9367f6c + url: https://api.scaleway.com/mongodb/v1/regions/fr-par/instances/b74d82e8-0397-4ac0-a611-ff14247fe745 method: GET response: proto: HTTP/2.0 @@ -2234,7 +4194,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"c992ad39-0bb5-4538-9eb1-3c3ae9367f6c","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"b74d82e8-0397-4ac0-a611-ff14247fe745","type":"not_found"}' headers: Content-Length: - "129" @@ -2243,9 +4203,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 21 Jul 2025 09:59:14 GMT + - Tue, 22 Jul 2025 08:51:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2253,7 +4213,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17747a72-8120-46a3-a38a-845ecafc4f3d + - 1be2ed11-fac4-4e8e-8996-97dfc314a07b status: 404 Not Found code: 404 - duration: 24.706375ms + duration: 31.194459ms From 7fdd01afc6ef7b4a75361fc8aa69f9ffc9d8ffb1 Mon Sep 17 00:00:00 2001 From: Jonathan Remy Date: Wed, 23 Jul 2025 13:51:32 +0200 Subject: [PATCH 2/2] use io.ReadAll --- internal/services/mongodb/instance.go | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/internal/services/mongodb/instance.go b/internal/services/mongodb/instance.go index e95dab4097..3f287497e9 100644 --- a/internal/services/mongodb/instance.go +++ b/internal/services/mongodb/instance.go @@ -1,7 +1,6 @@ package mongodb import ( - "bytes" "context" "errors" "fmt" @@ -472,12 +471,16 @@ func ResourceInstanceRead(ctx context.Context, d *schema.ResourceData, m any) di InstanceID: ID, }, scw.WithContext(ctx)) - var buf bytes.Buffer - if err == nil && cert != nil { - _, copyErr := io.Copy(&buf, cert.Content) - if copyErr == nil { - _ = d.Set("tls_certificate", buf.String()) + certBytes, readErr := io.ReadAll(cert.Content) + if readErr == nil { + _ = d.Set("tls_certificate", string(certBytes)) + } else { + diags = append(diags, diag.Diagnostic{ + Severity: diag.Warning, + Summary: "Failed to read MongoDB TLS certificate content", + Detail: readErr.Error(), + }) } }