diff --git a/docs/resources/mongodb_instance.md b/docs/resources/mongodb_instance.md index 0354f79808..5ede674bb6 100644 --- a/docs/resources/mongodb_instance.md +++ b/docs/resources/mongodb_instance.md @@ -49,6 +49,32 @@ resource "scaleway_mongodb_instance" "main" { } ``` +### Private Network and Public Network + +```terraform +resource scaleway_vpc_private_network pn01 { + name = "my_private_network" + region = "fr-par" +} + +resource "scaleway_mongodb_instance" "main" { + name = "test-mongodb-basic1" + version = "7.0.12" + node_type = "MGDB-PLAY2-NANO" + node_number = 1 + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + volume_size_in_gb = 5 + + private_network { + pn_id = "${scaleway_vpc_private_network.pn02.id}" + } + + public_network {} + +} +``` + ### Restore From Snapshot @@ -77,7 +103,9 @@ The following arguments are supported: - `snapshot_id` - (Optional) Snapshot ID to restore the MongoDB® instance from. - `private_network` - (Optional) Private Network endpoints of the Database Instance. - `pn_id` - (Required) The ID of the Private Network. -- `public_network` - (Optional) Public network specs details. +- `public_network` - (Optional) Public network endpoint configuration (no arguments). +~> **Important** If neither private_network nor public_network is specified, a public network endpoint is created by default. + ## Attributes Reference @@ -91,6 +119,10 @@ In addition to all arguments above, the following attributes are exported: - `ips` - List of IP addresses for your endpoint. - `port` - TCP port of the endpoint. - `dns_records` - List of DNS records for your endpoint. +- `public_network` - Private Network endpoints of the Database Instance. + - `id` - The ID of the endpoint. + - `port` - TCP port of the endpoint. + - `dns_records` - List of DNS records for your endpoint. ## Import diff --git a/internal/services/mongodb/instance.go b/internal/services/mongodb/instance.go index 91d1c6d96f..a6b2907165 100644 --- a/internal/services/mongodb/instance.go +++ b/internal/services/mongodb/instance.go @@ -288,6 +288,15 @@ func ResourceInstanceCreate(ctx context.Context, d *schema.ResourceData, m inter } } + if pubList, ok := d.GetOk("public_network"); ok { + items := pubList.([]interface{}) + if len(items) > 0 { + eps = append(eps, &mongodb.EndpointSpec{ + Public: &mongodb.EndpointSpecPublicDetails{}, + }) + } + } + if len(eps) == 0 { eps = append(eps, &mongodb.EndpointSpec{ Public: &mongodb.EndpointSpecPublicDetails{}, diff --git a/internal/services/mongodb/instance_test.go b/internal/services/mongodb/instance_test.go index 6ceeb06741..50b4d5eda0 100644 --- a/internal/services/mongodb/instance_test.go +++ b/internal/services/mongodb/instance_test.go @@ -373,6 +373,55 @@ func TestAccMongoDBInstance_UpdatePrivateNetwork(t *testing.T) { }) } +func TestAccMongoDBInstance_WithPublicNetwork(t *testing.T) { + tt := acctest.NewTestTools(t) + defer tt.Cleanup() + + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { acctest.PreCheck(t) }, + ProviderFactories: tt.ProviderFactories, + CheckDestroy: IsInstanceDestroyed(tt), + Steps: []resource.TestStep{ + { + Config: ` + + resource "scaleway_vpc_private_network" "pn01" { + name = "my_private_network" + region = "fr-par" + } + + resource "scaleway_mongodb_instance" "main" { + name = "test-mongodb-public-network" + version = "7.0.12" + node_type = "MGDB-PLAY2-NANO" + node_number = 1 + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + volume_size_in_gb = 5 + + private_network { + pn_id = scaleway_vpc_private_network.pn01.id + } + + public_network {} + } + `, + Check: resource.ComposeTestCheckFunc( + isMongoDBInstancePresent(tt, "scaleway_mongodb_instance.main"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "public_network.#", "1"), + resource.TestCheckResourceAttrSet("scaleway_mongodb_instance.main", "public_network.0.id"), + resource.TestCheckResourceAttrSet("scaleway_mongodb_instance.main", "public_network.0.port"), + resource.TestCheckResourceAttrSet("scaleway_mongodb_instance.main", "public_network.0.dns_record"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "private_network.#", "1"), + resource.TestCheckResourceAttrSet("scaleway_mongodb_instance.main", "private_network.0.id"), + resource.TestCheckResourceAttrSet("scaleway_mongodb_instance.main", "private_network.0.port"), + resource.TestCheckResourceAttrSet("scaleway_mongodb_instance.main", "private_network.0.dns_records.#"), + ), + }, + }, + }) +} + func capturePrivateNetworkID(previousID *string) resource.TestCheckFunc { return func(s *terraform.State) error { rs, ok := s.RootModule().Resources["scaleway_mongodb_instance.main"] diff --git a/internal/services/mongodb/testdata/mongo-db-instance-with-public-network.cassette.yaml b/internal/services/mongodb/testdata/mongo-db-instance-with-public-network.cassette.yaml new file mode 100644 index 0000000000..dc4c5a37e3 --- /dev/null +++ b/internal/services/mongodb/testdata/mongo-db-instance-with-public-network.cassette.yaml @@ -0,0 +1,3631 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 106 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"my_private_network","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null}' + form: {} + headers: + Content-Type: + - application/json + 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/vpc/v2/regions/fr-par/private-networks + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1088 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:42.070145Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"07c2c448-29a1-418b-ba90-da811aa91b03","name":"my_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-05-21T14:37:42.070145Z","id":"2eab5aa9-789a-4e32-b02d-b7cdc0ca4b3c","private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.16.0/22","updated_at":"2025-05-21T14:37:42.070145Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-05-21T14:37:42.070145Z","id":"bf047bfc-37b2-4def-b40a-4cfce548ae51","private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:47c7::/64","updated_at":"2025-05-21T14:37:42.070145Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-05-21T14:37:42.070145Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + headers: + Content-Length: + - "1088" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:37:42 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 240366fd-f5f5-489e-8812-10ca71c095fe + status: 200 OK + code: 200 + duration: 1.652085459s + - id: 1 + 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/vpc/v2/regions/fr-par/private-networks/07c2c448-29a1-418b-ba90-da811aa91b03 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1088 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:42.070145Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"07c2c448-29a1-418b-ba90-da811aa91b03","name":"my_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-05-21T14:37:42.070145Z","id":"2eab5aa9-789a-4e32-b02d-b7cdc0ca4b3c","private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.16.0/22","updated_at":"2025-05-21T14:37:42.070145Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-05-21T14:37:42.070145Z","id":"bf047bfc-37b2-4def-b40a-4cfce548ae51","private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:47c7::/64","updated_at":"2025-05-21T14:37:42.070145Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-05-21T14:37:42.070145Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + headers: + Content-Length: + - "1088" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:37:42 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 688e2b87-ae2a-4225-98df-d429fd0cc398 + status: 200 OK + code: 200 + duration: 303.015792ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 404 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-mongodb-public-network","version":"7.0.12","tags":null,"node_number":1,"node_type":"MGDB-PLAY2-NANO","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","volume":{"volume_size":5000000000,"volume_type":"sbs_5k"},"endpoints":[{"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"public":{}}]}' + form: {} + headers: + Content-Type: + - application/json + 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/v1alpha1/regions/fr-par/instances + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:37:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a8f9f807-4dce-4b3c-bb77-900dd9b31a84 + status: 200 OK + code: 200 + duration: 897.757667ms + - id: 3 + 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:37:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6f16baf0-a5c0-47c8-baa7-b9d1e0af63c3 + status: 200 OK + code: 200 + duration: 99.458ms + - id: 4 + 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:37:54 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 836f1e23-fdad-48d3-a60e-5835614fb734 + status: 200 OK + code: 200 + duration: 101.698334ms + - id: 5 + 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:38:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cced5188-c781-4e9b-94d2-87574589ff77 + status: 200 OK + code: 200 + duration: 87.742125ms + - id: 6 + 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:38:14 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b8b91937-d446-49f0-ae85-437d899bf3cb + status: 200 OK + code: 200 + duration: 100.815833ms + - id: 7 + 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:38:24 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 834bee31-cecc-4806-ba76-11d63b6ea2ca + status: 200 OK + code: 200 + duration: 75.369167ms + - id: 8 + 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:38:34 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7d242bda-79de-4586-913c-a18c146ac96a + status: 200 OK + code: 200 + duration: 80.031875ms + - id: 9 + 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:38:44 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b662d49a-2d87-4c0f-89c2-c8ed3cbd31f3 + status: 200 OK + code: 200 + duration: 121.2155ms + - id: 10 + 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:38:54 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e531a77e-7817-4722-b8df-b723ddedede1 + status: 200 OK + code: 200 + duration: 97.239209ms + - id: 11 + 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:39:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 41934734-c3a6-4599-a259-98f5c0f56946 + status: 200 OK + code: 200 + duration: 74.759834ms + - id: 12 + 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:39:14 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8aac7266-ad4b-44be-abd0-7d226af98a55 + status: 200 OK + code: 200 + duration: 79.599167ms + - id: 13 + 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:39:24 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6bfb4ad7-2457-4217-b941-225c22e884bc + status: 200 OK + code: 200 + duration: 207.416584ms + - id: 14 + 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:39:35 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 47682d31-9c93-413e-b9ee-9ad4865cce7f + status: 200 OK + code: 200 + duration: 84.346958ms + - id: 15 + 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:39:45 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1481cd72-7f0c-4c9c-a9fc-eb5ef12cc359 + status: 200 OK + code: 200 + duration: 90.252708ms + - id: 16 + 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:39:55 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b31d79d7-479d-41bf-9b73-c1a8688cff7c + status: 200 OK + code: 200 + duration: 106.879291ms + - id: 17 + 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:40:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 85d4d5d8-ca3b-4514-960d-350864d97b36 + status: 200 OK + code: 200 + duration: 84.2265ms + - id: 18 + 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:40:15 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c4990028-aebf-4e98-85b9-7badc78026e5 + status: 200 OK + code: 200 + duration: 89.358917ms + - id: 19 + 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:40:25 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2b644bc6-f07d-4e03-b1db-9454ffed03de + status: 200 OK + code: 200 + duration: 88.497916ms + - id: 20 + 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:40:35 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f149b602-9e98-425f-aa91-e9146cb7a5fa + status: 200 OK + code: 200 + duration: 94.365167ms + - id: 21 + 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:40:45 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e689ef17-17e9-48bc-aefb-9140228cf0a2 + status: 200 OK + code: 200 + duration: 116.539875ms + - id: 22 + 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:40:55 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 16029917-6820-47c5-9a93-9c3bf7afbf8c + status: 200 OK + code: 200 + duration: 78.386959ms + - id: 23 + 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:41:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9349316f-e463-470f-90b9-55f661218732 + status: 200 OK + code: 200 + duration: 86.272834ms + - id: 24 + 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:41:16 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ac9a7d00-008c-43f3-a3a2-03947667bc78 + status: 200 OK + code: 200 + duration: 98.837041ms + - id: 25 + 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:41:26 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 21839ccc-56cd-4131-9524-61eaf816d1b3 + status: 200 OK + code: 200 + duration: 81.175125ms + - id: 26 + 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:41:36 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ec5c9858-0944-4022-a297-7c37df04b625 + status: 200 OK + code: 200 + duration: 81.368916ms + - id: 27 + 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:41:46 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e536d3d1-c82f-4672-985c-f6adb58cf4d8 + status: 200 OK + code: 200 + duration: 214.29725ms + - id: 28 + 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:41:56 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dd55151c-7472-40e8-9539-77f68a376cba + status: 200 OK + code: 200 + duration: 198.039084ms + - id: 29 + 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:42:06 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 52cb47b8-07f5-4fa7-9c11-9ccbc91edc35 + status: 200 OK + code: 200 + duration: 196.168625ms + - id: 30 + 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:42:16 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c73005f7-270a-4def-9f18-2131a8054902 + status: 200 OK + code: 200 + duration: 96.421333ms + - id: 31 + 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:42:26 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 844e1fb9-4494-4fba-8fe0-709ae6d36397 + status: 200 OK + code: 200 + duration: 85.357541ms + - id: 32 + 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:42:37 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3dab779d-eecc-4ffe-b4a4-e012e684181a + status: 200 OK + code: 200 + duration: 81.348125ms + - id: 33 + 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:42:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - eb3c179f-d0a3-4ffa-9993-3e32238963ac + status: 200 OK + code: 200 + duration: 154.914959ms + - id: 34 + 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:42:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 17e48285-5a2c-4042-b220-932a7e18c501 + status: 200 OK + code: 200 + duration: 85.036584ms + - id: 35 + 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:43:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d8d425f1-0060-4be6-b5ed-38a8f7de2cea + status: 200 OK + code: 200 + duration: 95.442ms + - id: 36 + 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:43:17 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a10153e5-f8fa-487a-a79d-437cce361297 + status: 200 OK + code: 200 + duration: 95.974209ms + - 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:43:27 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a60c5c4b-c378-4bd9-8699-398449b1b551 + status: 200 OK + code: 200 + duration: 101.50675ms + - 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:43:37 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 68a62076-615f-410c-a838-03f572066678 + status: 200 OK + code: 200 + duration: 83.335959ms + - 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:43:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 72c41a04-ae5f-4675-bea1-e3d004c4f5d3 + status: 200 OK + code: 200 + duration: 85.891291ms + - 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:43:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2fdc169b-d648-476a-9872-f549f85b8eb9 + status: 200 OK + code: 200 + duration: 100.2665ms + - 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:44:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a1de46f7-bfb6-4090-af89-77f31bd2c546 + status: 200 OK + code: 200 + duration: 88.454208ms + - 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:44:18 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1e982fe9-8755-4be8-9e90-ac50ceadff93 + status: 200 OK + code: 200 + duration: 90.052209ms + - 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:44:28 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e98a259c-61d0-4b5c-844b-a80a2bdcc827 + status: 200 OK + code: 200 + duration: 106.7315ms + - 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - da7303b7-47bd-4a35-8810-cc427b3c3511 + status: 200 OK + code: 200 + duration: 85.237458ms + - 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:44:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 107e1d4a-b49e-41a9-9139-1165d0931cb4 + status: 200 OK + code: 200 + duration: 114.0795ms + - 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:44:58 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 300e654d-c1b1-4fc7-addb-7282bfc66567 + status: 200 OK + code: 200 + duration: 82.509041ms + - 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:45:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c65b63d8-7338-41af-8677-cd12a37c5cd7 + status: 200 OK + code: 200 + duration: 81.211291ms + - 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:45:18 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 47cf9370-dc4d-4640-bd77-c0b7421fa723 + status: 200 OK + code: 200 + duration: 92.065125ms + - 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:45:28 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 32cf67eb-1c12-4eb6-9cc3-a4ae3b95eb35 + status: 200 OK + code: 200 + duration: 101.249792ms + - 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:45:38 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 38fd9264-42e2-4059-958c-2754ff96ae8e + status: 200 OK + code: 200 + duration: 96.362917ms + - 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:45:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 50d40633-d641-47ba-8359-237ddd4fa9bc + status: 200 OK + code: 200 + duration: 88.497584ms + - 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:45:59 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2a857f16-6d58-4e38-85a8-d008dbd99f0b + status: 200 OK + code: 200 + duration: 100.793084ms + - 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 795 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "795" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:46:09 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 18487196-9b71-4b44-9946-f84d960a4728 + status: 200 OK + code: 200 + duration: 86.641ms + - 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 788 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "788" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:46:19 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d1f654b3-91d1-46b3-87a1-df6daacc6527 + status: 200 OK + code: 200 + duration: 83.2455ms + - 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 788 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "788" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:46:19 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5a492814-49a2-4d45-9a1d-764c79d476ea + status: 200 OK + code: 200 + duration: 96.436959ms + - 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 788 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "788" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:46:19 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6289c73f-f7d9-4339-accb-63de89b2788a + status: 200 OK + code: 200 + duration: 38.385292ms + - 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/vpc/v2/regions/fr-par/private-networks/07c2c448-29a1-418b-ba90-da811aa91b03 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1088 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:42.070145Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"07c2c448-29a1-418b-ba90-da811aa91b03","name":"my_private_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-05-21T14:37:42.070145Z","id":"2eab5aa9-789a-4e32-b02d-b7cdc0ca4b3c","private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.16.0/22","updated_at":"2025-05-21T14:37:42.070145Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-05-21T14:37:42.070145Z","id":"bf047bfc-37b2-4def-b40a-4cfce548ae51","private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:47c7::/64","updated_at":"2025-05-21T14:37:42.070145Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-05-21T14:37:42.070145Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + headers: + Content-Length: + - "1088" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:46:20 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0b31b67c-1e5a-4e1d-a4c5-050746f5ad7d + status: 200 OK + code: 200 + duration: 82.781125ms + - 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 788 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "788" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:46:20 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4a310375-8248-4538-861b-94e9fdd66f5b + status: 200 OK + code: 200 + duration: 26.692125ms + - 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 788 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "788" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:46:21 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8cd5583e-213d-4da4-a892-5f1bd333ed3b + status: 200 OK + code: 200 + duration: 74.99025ms + - 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 791 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "791" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:46:21 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 07266f53-4e45-4d97-ad45-7f7b7f688388 + status: 200 OK + code: 200 + duration: 199.784125ms + - 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 791 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "791" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:46:21 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7ed63c5d-6a0a-4f85-a223-f02e61c16bad + status: 200 OK + code: 200 + duration: 92.300083ms + - 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 791 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "791" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:46:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 23023e6f-793b-40b8-8d96-61837b9247dc + status: 200 OK + code: 200 + duration: 90.026375ms + - 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 791 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "791" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:46:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5fbf26c8-afbd-40f8-8d82-2fe64d4cf92d + status: 200 OK + code: 200 + duration: 74.156583ms + - 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 791 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "791" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:46:51 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 716532fe-d661-45e6-9daf-8385d780f173 + status: 200 OK + code: 200 + duration: 96.073708ms + - 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 791 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "791" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:47:01 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ce0f6a49-6303-498b-8ccd-d391c40caa47 + status: 200 OK + code: 200 + duration: 91.247166ms + - 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 791 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "791" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:47:11 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c05523f8-3f6d-4ea3-a236-e0125f2f3576 + status: 200 OK + code: 200 + duration: 83.112916ms + - 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 791 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "791" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:47:21 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5911e0c6-daf9-4a34-bed2-b1c10cf28b52 + status: 200 OK + code: 200 + duration: 77.283833ms + - 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 791 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "791" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:47:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - abef9600-9e80-46d3-8153-a08c2ca930a9 + status: 200 OK + code: 200 + duration: 93.759ms + - 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 791 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "791" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:47:42 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 51c825c6-1ab3-4c02-b43b-2fdec79e4300 + status: 200 OK + code: 200 + duration: 99.006083ms + - 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 791 + uncompressed: false + body: '{"created_at":"2025-05-21T14:37:43.086559Z","endpoints":[{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.07c2c448-29a1-418b-ba90-da811aa91b03.internal"],"id":"c889a68c-df2c-4abc-be64-a1f0b3356040","ips":[],"port":27017,"private_network":{"private_network_id":"07c2c448-29a1-418b-ba90-da811aa91b03"}},{"dns_records":["43ab9f60-ff56-46c9-96cc-2de9a45af9a4.mgdb.fr-par.scw.cloud"],"id":"68d012c9-acbb-4bf5-a343-b0fbff34e32e","ips":[],"port":27017,"public":{}}],"id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","name":"test-mongodb-public-network","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "791" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:47:52 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e9c285ae-93e8-4c1c-8017-1a7bd69453c0 + status: 200 OK + code: 200 + duration: 92.894959ms + - 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 129 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance","resource_id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:48:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 668e7eae-addd-4b99-9704-4c41117bf23e + status: 404 Not Found + code: 404 + duration: 24.674834ms + - 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/vpc/v2/regions/fr-par/private-networks/07c2c448-29a1-418b-ba90-da811aa91b03 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:48:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cfcf94a1-6f65-4932-a12c-9464113636e4 + status: 204 No Content + code: 204 + duration: 1.250180708s + - 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/v1alpha1/regions/fr-par/instances/43ab9f60-ff56-46c9-96cc-2de9a45af9a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 129 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance","resource_id":"43ab9f60-ff56-46c9-96cc-2de9a45af9a4","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 21 May 2025 14:48:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f5fc985b-dfdb-4849-a817-fbeb2629ace6 + status: 404 Not Found + code: 404 + duration: 28.142291ms